Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
jmazzi authored Mar 24, 2022
2 parents 53f720a + 518d82e commit d3f6941
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
7 changes: 2 additions & 5 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@ appraise "activerecord_6_1" do
end

appraise "activerecord_7_0" do

# We need this PR https://github.com/rails/rails/pull/43951 in order to support ruby 3.1
gem "activerecord", github: "rails/rails", branch: "7-0-stable"
gem "activesupport", github: "rails/rails", branch: "7-0-stable"

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.1'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '< 7.1'
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
5 changes: 2 additions & 3 deletions gemfiles/activerecord_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

source "https://rubygems.org"

gem "activerecord", :github => "rails/rails", :branch => "7-0-stable"
gem "activesupport", :github => "rails/rails", :branch => "7-0-stable"

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

gemspec :path => "../"

0 comments on commit d3f6941

Please sign in to comment.