Skip to content

Commit

Permalink
Add ActiveRecord 5.2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
itspriddle committed Apr 10, 2018
1 parent 05bfb3b commit 72df1a5
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ gemfile:
- gemfiles/activerecord_4_2.gemfile
- gemfiles/activerecord_5_0.gemfile
- gemfiles/activerecord_5_1.gemfile
- gemfiles/activerecord_5_2.gemfile

addons:
postgresql: 9.3
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ appraise "activerecord_5_1" do
gem "activerecord", "~> 5.1.0"
gem "activesupport", "~> 5.1.0"
end

appraise "activerecord_5_2" do
gem "activerecord", "~> 5.2.0"
gem "activesupport", "~> 5.2.0"
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', '< 5.2'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '< 5.2'
gem.add_runtime_dependency 'activerecord', '>= 4.2', '< 5.3'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '< 5.3'

gem.add_development_dependency 'rspec', '~> 3.5.0'
gem.add_development_dependency 'guard', '~> 2.6.1'
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/activerecord_5_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 5.2.0"
gem "activesupport", "~> 5.2.0"

gemspec :path => "../"

0 comments on commit 72df1a5

Please sign in to comment.