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:
Gonzalo Rodriguez 2018-03-09 10:07:06 -03:00 committed by GitHub
commit 42cd957f2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 0 deletions

View file

@ -11,11 +11,17 @@ before_install:
- gem install bundler
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
fast_finish: true
services:
- redis
- memcached

View file

@ -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
gem 'activesupport', '~> 5.1.0'
gem 'actionpack', '~> 5.1.0'

View 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: "../"