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

Test against ActiveModel 6.1 and Ruby 2.7.2 #13

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ rvm:
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
- 2.7.2
- ruby-head

gemfile:
Expand All @@ -23,6 +23,7 @@ gemfile:
- gemfiles/am_5.1.gemfile
- gemfiles/am_5.2.gemfile
- gemfiles/am_6.0.gemfile
- gemfiles/am_6.1.gemfile
- gemfiles/am_edge.gemfile

jobs:
Expand All @@ -38,11 +39,15 @@ jobs:
gemfile: gemfiles/am_5.2.gemfile
- rvm: 2.1.10
gemfile: gemfiles/am_6.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/am_6.1.gemfile
- rvm: 2.1.10
gemfile: gemfiles/am_edge.gemfile

- rvm: 2.2.10
gemfile: gemfiles/am_6.0.gemfile
- rvm: 2.2.10
gemfile: gemfiles/am_6.1.gemfile
- rvm: 2.2.10
gemfile: gemfiles/am_edge.gemfile

Expand All @@ -52,6 +57,8 @@ jobs:
gemfile: gemfiles/am_4.1.gemfile
- rvm: 2.3.8
gemfile: gemfiles/am_6.0.gemfile
- rvm: 2.3.8
gemfile: gemfiles/am_6.1.gemfile
- rvm: 2.3.8
gemfile: gemfiles/am_edge.gemfile

Expand All @@ -63,6 +70,8 @@ jobs:
gemfile: gemfiles/am_4.1.gemfile
- rvm: 2.4.10
gemfile: gemfiles/am_6.0.gemfile
- rvm: 2.4.10
gemfile: gemfiles/am_6.1.gemfile
- rvm: 2.4.10
gemfile: gemfiles/am_edge.gemfile

Expand All @@ -84,19 +93,19 @@ jobs:
- rvm: 2.6.6
gemfile: gemfiles/am_4.2.gemfile

- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_3.2.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_4.0.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_4.1.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_4.2.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_5.0.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_5.1.gemfile
- rvm: 2.7.1
- rvm: 2.7.2
gemfile: gemfiles/am_5.2.gemfile

- rvm: ruby-head
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ appraise 'am-6.0' do
gem 'activesupport', "~> 6.0.0"
end

appraise 'am-6.1' do
gem 'activemodel', "~> 6.1.0.rc1"
gem 'activesupport', "~> 6.1.0.rc1"
end

appraise 'am-edge' do
gem 'activemodel', git: "https://github.com/rails/rails.git"
gem 'activesupport', git: "https://github.com/rails/rails.git"
Expand Down
8 changes: 8 additions & 0 deletions gemfiles/am_6.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activemodel", "~> 6.1.0.rc1"
gem "activesupport", "~> 6.1.0.rc1"

gemspec path: "../"