Skip to content

Commit

Permalink
Merge pull request #195 from LeftClickBV/master
Browse files Browse the repository at this point in the history
Allow all version of the 7.0.x versions of Rails
  • Loading branch information
jmazzi authored Feb 28, 2022
2 parents 96a23e4 + 08a47ec commit 518d82e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ appraise "activerecord_6_1" do
end

appraise "activerecord_7_0" do
gem "activerecord", "~> 7.0"
gem "activesupport", "~> 7.0"
gem "activerecord", "~> 7.0.0"
gem "activesupport", "~> 7.0.0"
gem "pg", "~> 1.1"
end
4 changes: 2 additions & 2 deletions crypt_keeper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Gem::Specification.new do |gem|

gem.post_install_message = "WARNING: CryptKeeper 2.0 contains breaking changes and may require you to reencrypt your data! Please view the README at https://github.com/jmazzi/crypt_keeper for more information."

gem.add_runtime_dependency 'activerecord', '>= 4.2', '<= 7'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '<= 7'
gem.add_runtime_dependency 'activerecord', '>= 4.2', '~> 7.0.0'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '~> 7.0.0'

gem.add_development_dependency 'rspec', '~> 3.5.0'
gem.add_development_dependency 'guard', '~> 2.6.1'
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/activerecord_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

source "https://rubygems.org"

gem "activerecord", "~> 7.0"
gem "activesupport", "~> 7.0"
gem "activerecord", "~> 7.0.0"
gem "activesupport", "~> 7.0.0"
gem "pg", "~> 1.1"

gemspec :path => "../"

0 comments on commit 518d82e

Please sign in to comment.