Test Settings for Rails6.1

This commit is contained in:
Kohei Sugimoto 2021-07-31 13:33:54 +09:00 committed by Anil Kumar Maurya
parent ca712ead6d
commit 0e03746a2b
4 changed files with 28 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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'

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