Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure test for rails 5.2 #624

Merged
merged 2 commits into from
May 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.0_nobrainer.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile

before_script:
- mkdir /tmp/dynamodb
Expand All @@ -47,6 +48,8 @@ matrix:
gemfile: gemfiles/rails_5.0_nobrainer.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: 2.5.0
gemfile: gemfiles/rails_3.2.gemfile
- rvm: 2.5.0
Expand All @@ -59,6 +62,8 @@ matrix:
gemfile: gemfiles/rails_5.0.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_5.1.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_4.2_nobrainer.gemfile
- rvm: jruby-9.1.12.0
Expand Down
9 changes: 9 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,12 @@ appraise 'rails_5.1' do
gem 'aws-sdk', '~>2', platforms: :ruby
gem 'redis-objects'
end

appraise 'rails_5.2' do
gem 'rails', '5.2'
gem 'mongoid', '~>6.0'
gem 'sequel'
gem 'dynamoid', '~>2.2', platforms: :ruby
gem 'aws-sdk', '~>2', platforms: :ruby
gem 'redis-objects'
end
13 changes: 13 additions & 0 deletions gemfiles/rails_5.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "sqlite3", "~> 1.3.5", platforms: :ruby
gem "rails", "5.2"
gem "mongoid", "~>6.0"
gem "sequel"
gem "dynamoid", "~>2.2", platforms: :ruby
gem "aws-sdk", "~>2", platforms: :ruby
gem "redis-objects"

gemspec path: "../"