mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
add tests for Rails 5.1
This commit is contained in:
parent
17e5fbd812
commit
9777f88433
3 changed files with 30 additions and 0 deletions
|
@ -19,6 +19,7 @@ gemfile:
|
|||
- gemfiles/rails_4.2.gemfile
|
||||
- gemfiles/rails_4.2_mongoid_5.gemfile
|
||||
- gemfiles/rails_5.0.gemfile
|
||||
- gemfiles/rails_5.1.gemfile
|
||||
|
||||
before_script:
|
||||
- mkdir /tmp/dynamodb
|
||||
|
@ -36,6 +37,8 @@ matrix:
|
|||
gemfile: gemfiles/rails_4.2_mongoid_5.gemfile
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/rails_5.0.gemfile
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/rails_5.1.gemfile
|
||||
- rvm: 2.2.6
|
||||
gemfile: gemfiles/rails_3.2.gemfile
|
||||
- rvm: 2.3.3
|
||||
|
@ -44,8 +47,12 @@ matrix:
|
|||
gemfile: gemfiles/rails_4.2_mongoid_5.gemfile
|
||||
- rvm: jruby-1.7
|
||||
gemfile: gemfiles/rails_5.0.gemfile
|
||||
- rvm: jruby-1.7
|
||||
gemfile: gemfiles/rails_5.1.gemfile
|
||||
- rvm: jruby-9.0.5.0
|
||||
gemfile: gemfiles/rails_5.0.gemfile
|
||||
- rvm: jruby-9.0.5.0
|
||||
gemfile: gemfiles/rails_5.1.gemfile
|
||||
|
||||
notifications:
|
||||
slack:
|
||||
|
|
|
@ -41,3 +41,12 @@ appraise 'rails_5.0' do
|
|||
gem 'aws-sdk', '~>2', :platforms => :ruby
|
||||
gem 'redis-objects'
|
||||
end
|
||||
|
||||
appraise 'rails_5.1' do
|
||||
gem 'rails', '5.1'
|
||||
gem 'mongoid', '~>6.0'
|
||||
gem 'sequel'
|
||||
gem 'dynamoid', '~> 1', :platforms => :ruby
|
||||
gem 'aws-sdk', '~>2', :platforms => :ruby
|
||||
gem 'redis-objects'
|
||||
end
|
||||
|
|
14
gemfiles/rails_5.1.gemfile
Normal file
14
gemfiles/rails_5.1.gemfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "sqlite3", platforms: :ruby
|
||||
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
||||
gem "rails", "5.1"
|
||||
gem "mongoid", "~>6.0"
|
||||
gem "sequel"
|
||||
gem "dynamoid", "~> 1", platforms: :ruby
|
||||
gem "aws-sdk", "~>2", platforms: :ruby
|
||||
gem "redis-objects"
|
||||
|
||||
gemspec path: "../"
|
Loading…
Reference in a new issue