Skip to content

Commit

Permalink
Add tests for Rails 5.2
Browse files Browse the repository at this point in the history
Rails 5.2 is imminent so we should add support for it.
  • Loading branch information
mrhead committed Nov 29, 2017
1 parent 339859e commit e2ad725
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -18,6 +18,7 @@ gemfile:
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
- gemfiles/rails51.gemfile
- gemfiles/rails52.gemfile
matrix:
allow_failures:
- rvm: ruby-head
Expand All @@ -26,6 +27,8 @@ matrix:
gemfile: gemfiles/rails50.gemfile
- rvm: 2.1
gemfile: gemfiles/rails51.gemfile
- rvm: 2.1
gemfile: gemfiles/rails52.gemfile
- rvm: 2.4.1
gemfile: gemfiles/rails40.gemfile
- rvm: 2.4.1
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Expand Up @@ -21,3 +21,8 @@ end
appraise 'rails51' do
gem 'rails', '>= 5.1.0.rc1', '< 5.2'
end

appraise 'rails52' do
gem 'rails', '>= 5.2.0.beta2', '< 5.3'
gem 'mysql2', '~> 0.4.4'
end
8 changes: 8 additions & 0 deletions gemfiles/rails52.gemfile
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rails", ">= 5.2.0.beta2", "< 5.3"
gem "mysql2", "~> 0.4.4"

gemspec name: "audited", path: "../"

0 comments on commit e2ad725

Please sign in to comment.