mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-04-27 15:07:41 +00:00
Merge pull request #276 from grzuy/rails_5-2
Test against rails 5.2.0.rc to get early feedback
This commit is contained in:
commit
42cd957f2f
3 changed files with 25 additions and 0 deletions
|
|
@ -11,11 +11,17 @@ before_install:
|
||||||
- gem install bundler
|
- gem install bundler
|
||||||
|
|
||||||
gemfile:
|
gemfile:
|
||||||
|
- gemfiles/rails_5_2.gemfile
|
||||||
- gemfiles/rails_5_1.gemfile
|
- gemfiles/rails_5_1.gemfile
|
||||||
- gemfiles/rails_5_0.gemfile
|
- gemfiles/rails_5_0.gemfile
|
||||||
- gemfiles/rails_4_2.gemfile
|
- gemfiles/rails_4_2.gemfile
|
||||||
- gemfiles/dalli2.gemfile
|
- gemfiles/dalli2.gemfile
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
- gemfile: gemfiles/rails_5_2.gemfile
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- redis
|
- redis
|
||||||
- memcached
|
- memcached
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
appraise 'rails_5-2' do
|
||||||
|
gem 'activesupport', '~> 5.2.0.a'
|
||||||
|
gem 'actionpack', '~> 5.2.0.a'
|
||||||
|
end
|
||||||
|
|
||||||
appraise 'rails_5-1' do
|
appraise 'rails_5-1' do
|
||||||
gem 'activesupport', '~> 5.1.0'
|
gem 'activesupport', '~> 5.1.0'
|
||||||
gem 'actionpack', '~> 5.1.0'
|
gem 'actionpack', '~> 5.1.0'
|
||||||
|
|
|
||||||
14
gemfiles/rails_5_2.gemfile
Normal file
14
gemfiles/rails_5_2.gemfile
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
# This file was generated by Appraisal
|
||||||
|
|
||||||
|
source "https://rubygems.org"
|
||||||
|
|
||||||
|
gem "activesupport", "~> 5.2.0.a"
|
||||||
|
gem "actionpack", "~> 5.2.0.a"
|
||||||
|
|
||||||
|
group :development do
|
||||||
|
gem "pry"
|
||||||
|
gem "guard"
|
||||||
|
gem "guard-minitest"
|
||||||
|
end
|
||||||
|
|
||||||
|
gemspec path: "../"
|
||||||
Loading…
Reference in a new issue