mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
Don't allow failures against rails 5.2, it's out now
This commit is contained in:
parent
fec4f322d2
commit
2e9eb6716f
3 changed files with 4 additions and 5 deletions
|
|
@ -31,7 +31,6 @@ gemfile:
|
|||
|
||||
matrix:
|
||||
allow_failures:
|
||||
- gemfile: gemfiles/rails_5_2.gemfile
|
||||
- rvm: 2.6.0-preview1
|
||||
|
||||
fast_finish: true
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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: "../"
|
||||
|
|
|
|||
Loading…
Reference in a new issue