Skip to content

Commit

Permalink
Support Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
khiav reoy committed Dec 24, 2023
1 parent 841472a commit 171401c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- 6.0.gemfile
- 6.1.gemfile
- 7.0.gemfile
- 7.1.gemfile
exclude:
- gemfile: 3.2.gemfile
ruby: 2.6
Expand Down Expand Up @@ -69,6 +70,10 @@ jobs:
ruby: 2.3
- gemfile: 7.0.gemfile
ruby: 2.6
- gemfile: 7.1.gemfile
ruby: 2.3
- gemfile: 7.1.gemfile
ruby: 2.6
env:
BUNDLE_GEMFILE: "gemfiles/${{ matrix.gemfile }}"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source 'https://rubygems.org'

gem 'zeitwerk'
gem 'activerecord', '~> 7.0.8'
gem 'pluck_all', '~> 2.3.2'
gem 'pluck_all', '~> 2.3.4'

# gem 'globalize', '~> 6.0.1' # TODO: wait for globalize to support Rails 7.

Expand Down
14 changes: 14 additions & 0 deletions gemfiles/7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
source 'https://rubygems.org'

gem 'zeitwerk'
gem 'activerecord', '~> 7.1.2'
gem 'pluck_all', '~> 2.3.4'

# gem 'globalize', '~> 6.0.1' # TODO: wait for globalize to support Rails 7.

group :test do
gem 'simplecov', '< 0.18'
gem 'sqlite3', '~> 1.4.1'
end

gemspec path: '../'

0 comments on commit 171401c

Please sign in to comment.