Merge pull request #337 from grzuy/rails_5-2

Officially support rails 5.2
This commit is contained in:
Gonzalo Rodriguez 2018-04-10 15:34:17 -03:00 committed by GitHub
commit bbc300a08f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 19 deletions

View file

@ -25,13 +25,11 @@ gemfile:
- gemfiles/rack_1_6.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_4_2.gemfile
- gemfiles/dalli2.gemfile
matrix:
allow_failures:
- gemfile: gemfiles/rails_5_2.gemfile
- rvm: 2.6.0-preview1
fast_finish: true

View file

@ -7,8 +7,8 @@ appraise "rack_1_6" do
end
appraise 'rails_5-2' do
gem 'activesupport', '~> 5.2.0.a'
gem 'actionpack', '~> 5.2.0.a'
gem 'activesupport', '~> 5.2.0'
gem 'actionpack', '~> 5.2.0'
end
appraise 'rails_5-1' do
@ -16,11 +16,6 @@ appraise 'rails_5-1' do
gem 'actionpack', '~> 5.1.0'
end
appraise 'rails_5-0' do
gem 'activesupport', '~> 5.0.0'
gem 'actionpack', '~> 5.0.0'
end
appraise 'rails_4-2' do
gem 'activesupport', '~> 4.2.0'
gem 'actionpack', '~> 4.2.0'

View file

@ -1,8 +0,0 @@
# This file was generated by Appraisal
source "https://rubygems.org"
gem "activesupport", "~> 5.0.0"
gem "actionpack", "~> 5.0.0"
gemspec path: "../"

View file

@ -2,7 +2,7 @@
source "https://rubygems.org"
gem "activesupport", "~> 5.2.0.a"
gem "actionpack", "~> 5.2.0.a"
gem "activesupport", "~> 5.2.0"
gem "actionpack", "~> 5.2.0"
gemspec path: "../"