Skip to content

Commit

Permalink
Merge pull request #60 from ifad/chore/update-dependencies
Browse files Browse the repository at this point in the history
Test against Active Model 7.2
  • Loading branch information
tagliala authored Jun 15, 2024
2 parents 8567d05 + bf7d3b1 commit bf98204
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
gemfile: [am_7.0, am_7.1]
gemfile: [am_7.0, am_7.1, am_7.2]
channel: [stable]

include:
Expand All @@ -39,10 +39,17 @@ jobs:
- ruby-version: 'head'
gemfile: am_7.1
channel: experimental
- ruby-version: 'head'
gemfile: am_7.2
channel: experimental
- ruby-version: 'head'
gemfile: am_edge
channel: experimental

exclude:
- ruby-version: '3.0'
gemfile: am_7.2

env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile

Expand Down
2 changes: 1 addition & 1 deletion .rubocop_todo.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ appraise 'am-7.1' do
gem 'activemodel', '~> 7.1.0'
end

appraise 'am-7.2' do
gem 'activemodel', '~> 7.2.0.beta2'
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
22 changes: 22 additions & 0 deletions gemfiles/am_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal"
gem "bundler"
gem "byebug"
gem "pry"
gem "rake"
gem "rspec"
gem "simplecov"
gem "webmock"
gem "yard"
gem "rubocop", require: false
gem "rubocop-packaging", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rake", require: false
gem "rubocop-rspec", require: false
gem "activemodel", "~> 7.2.0.beta2"

gemspec path: "../"

0 comments on commit bf98204

Please sign in to comment.