mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
Test Settings for Rails6.1
This commit is contained in:
parent
ca712ead6d
commit
0e03746a2b
4 changed files with 28 additions and 1 deletions
|
@ -33,6 +33,7 @@ gemfile:
|
|||
- gemfiles/rails_5.1.gemfile
|
||||
- gemfiles/rails_5.2.gemfile
|
||||
- gemfiles/rails_6.0.gemfile
|
||||
- gemfiles/rails_6.1.gemfile
|
||||
|
||||
before_script:
|
||||
- mkdir /tmp/dynamodb
|
||||
|
@ -72,6 +73,8 @@ matrix:
|
|||
gemfile: gemfiles/rails_5.2.gemfile
|
||||
- rvm: jruby-9.1.12.0
|
||||
gemfile: gemfiles/rails_6.0.gemfile
|
||||
- rvm: jruby-9.1.12.0
|
||||
gemfile: gemfiles/rails_6.1.gemfile
|
||||
# - rvm: jruby-9.1.12.0
|
||||
# gemfile: gemfiles/rails_4.2_nobrainer.gemfile
|
||||
# - rvm: jruby-9.1.12.0
|
||||
|
|
10
Appraisals
10
Appraisals
|
@ -76,6 +76,16 @@ appraise 'rails_6.0' do
|
|||
gem "after_commit_everywhere", "~> 1.0"
|
||||
end
|
||||
|
||||
appraise 'rails_6.1' do
|
||||
gem 'rails', '~> 6.1.4'
|
||||
gem 'mongoid', '~>7.0', '>= 7.0.5'
|
||||
gem 'sequel'
|
||||
gem 'dynamoid', '~>3.3', platforms: :ruby
|
||||
gem 'aws-sdk-dynamodb', '~> 1'
|
||||
gem 'redis-objects'
|
||||
gem "after_commit_everywhere", "~> 1.0"
|
||||
end
|
||||
|
||||
appraise 'norails' do
|
||||
gem 'sqlite3', '~> 1.3', '>= 1.3.5', platforms: :ruby
|
||||
gem 'rails', install_if: false
|
||||
|
|
2
Gemfile
2
Gemfile
|
@ -3,5 +3,5 @@ source "https://rubygems.org"
|
|||
gemspec
|
||||
|
||||
gem 'sqlite3', '~> 1.4', :platforms => :ruby
|
||||
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
|
||||
gem 'rails', '~> 6.1.4'
|
||||
gem 'after_commit_everywhere', '~> 1.0'
|
||||
|
|
14
gemfiles/rails_6.1.gemfile
Normal file
14
gemfiles/rails_6.1.gemfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
# This file was generated by Appraisal
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "sqlite3", "~> 1.4", platforms: :ruby
|
||||
gem "rails", "~> 6.1.4"
|
||||
gem "after_commit_everywhere", "~> 1.0"
|
||||
gem "mongoid", "~>7.0", ">= 7.0.5"
|
||||
gem "sequel"
|
||||
gem "dynamoid", "~>3.3", platforms: :ruby
|
||||
gem "aws-sdk-dynamodb", "~> 1"
|
||||
gem "redis-objects"
|
||||
|
||||
gemspec path: "../"
|
Loading…
Reference in a new issue