mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
Merge pull request #337 from grzuy/rails_5-2
Officially support rails 5.2
This commit is contained in:
commit
bbc300a08f
4 changed files with 4 additions and 19 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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: "../"
|
||||
|
|
@ -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