ci: get Travis to test against rails 6 betas

This commit is contained in:
Gonzalo Rodriguez 2019-02-26 19:07:19 -03:00
parent b1558d022f
commit 78266c19d4
No known key found for this signature in database
GPG key ID: 5DB8B81B049B8AB1
3 changed files with 15 additions and 0 deletions

View file

@ -16,6 +16,7 @@ before_install:
gemfile:
- gemfiles/rack_2_0.gemfile
- gemfiles/rack_1_6.gemfile
- gemfiles/rails_6_0.gemfile
- gemfiles/rails_5_2.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_4_2.gemfile
@ -31,6 +32,7 @@ gemfile:
matrix:
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/rails_6_0.gemfile
fast_finish: true

View file

@ -17,6 +17,11 @@ appraise "rack_1_6" do
gem "rack-test", ">= 0.6"
end
appraise 'rails_6_0' do
gem 'actionpack', '~> 6.0.0.a'
gem 'activesupport', '~> 6.0.0.a'
end
appraise 'rails_5-2' do
gem 'actionpack', '~> 5.2.0'
gem 'activesupport', '~> 5.2.0'

View file

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