Skip to content

Commit

Permalink
Appease the style checker
Browse files Browse the repository at this point in the history
  • Loading branch information
kamal committed Apr 6, 2023
1 parent 0b1469a commit cd9c9d2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
14 changes: 8 additions & 6 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
appraise "activemodel-6.0" do
gem "activemodel", "~> 6.0.x"
# frozen_string_literal: true

appraise 'activemodel-6.0' do
gem 'activemodel', '~> 6.0.x'
end

appraise "activemodel-6.1" do
gem "activemodel", "~> 6.1.x"
appraise 'activemodel-6.1' do
gem 'activemodel', '~> 6.1.x'
end

appraise "activemodel-7.0" do
gem "activemodel", "~> 7.0.x"
appraise 'activemodel-7.0' do
gem 'activemodel', '~> 7.0.x'
end
8 changes: 5 additions & 3 deletions gemfiles/activemodel_6.0.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source "https://rubygems.org"
source 'https://rubygems.org'

gem "activemodel", "~> 6.0.x"
gem 'activemodel', '~> 6.0.x'

gemspec path: "../"
gemspec path: '../'
8 changes: 5 additions & 3 deletions gemfiles/activemodel_6.1.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source "https://rubygems.org"
source 'https://rubygems.org'

gem "activemodel", "~> 6.1.x"
gem 'activemodel', '~> 6.1.x'

gemspec path: "../"
gemspec path: '../'
8 changes: 5 additions & 3 deletions gemfiles/activemodel_7.0.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# frozen_string_literal: true

# This file was generated by Appraisal

source "https://rubygems.org"
source 'https://rubygems.org'

gem "activemodel", "~> 7.0.x"
gem 'activemodel', '~> 7.0.x'

gemspec path: "../"
gemspec path: '../'

0 comments on commit cd9c9d2

Please sign in to comment.