Don't allow failures against rails 5.2, it's out now

This commit is contained in:
Gonzalo Rodriguez 2018-04-10 11:00:49 -04:00
parent fec4f322d2
commit 2e9eb6716f
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1
3 changed files with 4 additions and 5 deletions

View file

@ -31,7 +31,6 @@ 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

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: "../"