mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-04-27 15:07:41 +00:00
Merge pull request #407 from grzuy/rails_6
ci: get Travis to test against rails 6 betas
This commit is contained in:
commit
b678f5bfea
3 changed files with 20 additions and 1 deletions
|
|
@ -16,6 +16,7 @@ before_install:
|
||||||
gemfile:
|
gemfile:
|
||||||
- gemfiles/rack_2_0.gemfile
|
- gemfiles/rack_2_0.gemfile
|
||||||
- gemfiles/rack_1_6.gemfile
|
- gemfiles/rack_1_6.gemfile
|
||||||
|
- gemfiles/rails_6_0.gemfile
|
||||||
- gemfiles/rails_5_2.gemfile
|
- gemfiles/rails_5_2.gemfile
|
||||||
- gemfiles/rails_5_1.gemfile
|
- gemfiles/rails_5_1.gemfile
|
||||||
- gemfiles/rails_4_2.gemfile
|
- gemfiles/rails_4_2.gemfile
|
||||||
|
|
@ -31,7 +32,12 @@ gemfile:
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- rvm: ruby-head
|
- rvm: ruby-head
|
||||||
|
- gemfile: gemfiles/rails_6_0.gemfile
|
||||||
|
exclude:
|
||||||
|
- gemfile: gemfiles/rails_6_0.gemfile
|
||||||
|
rvm: 2.4.5
|
||||||
|
- gemfile: gemfiles/rails_6_0.gemfile
|
||||||
|
rvm: 2.3.8
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,11 @@ appraise "rack_1_6" do
|
||||||
gem "rack-test", ">= 0.6"
|
gem "rack-test", ">= 0.6"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
appraise 'rails_6_0' do
|
||||||
|
gem 'actionpack', '~> 6.0.0.a'
|
||||||
|
gem 'activesupport', '~> 6.0.0.a'
|
||||||
|
end
|
||||||
|
|
||||||
appraise 'rails_5-2' do
|
appraise 'rails_5-2' do
|
||||||
gem 'actionpack', '~> 5.2.0'
|
gem 'actionpack', '~> 5.2.0'
|
||||||
gem 'activesupport', '~> 5.2.0'
|
gem 'activesupport', '~> 5.2.0'
|
||||||
|
|
|
||||||
8
gemfiles/rails_6_0.gemfile
Normal file
8
gemfiles/rails_6_0.gemfile
Normal 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: "../"
|
||||||
Loading…
Reference in a new issue