Skip to content

Commit

Permalink
test Ruby 3.2 and Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
khiav reoy committed Sep 9, 2024
1 parent d3a3dfa commit 7069101
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- 2.7
- 3.0
- 3.1
- 3.2
gemfile:
- active_record_32.gemfile
- active_record_42.gemfile
Expand All @@ -38,6 +39,7 @@ jobs:
- active_record_61.gemfile
- active_record_70.gemfile
- active_record_71.gemfile
- active_record_72.gemfile
- mongoid_54.gemfile
- mongoid_64.gemfile
- mongoid_73.gemfile
Expand All @@ -50,6 +52,8 @@ jobs:
ruby: 3.0
- gemfile: active_record_32.gemfile
ruby: 3.1
- gemfile: active_record_32.gemfile
ruby: 3.2
- gemfile: active_record_32.gemfile
orm: MONGOID
- gemfile: active_record_42.gemfile
Expand All @@ -58,24 +62,32 @@ jobs:
ruby: 3.0
- gemfile: active_record_42.gemfile
ruby: 3.1
- gemfile: active_record_42.gemfile
ruby: 3.2
- gemfile: active_record_42.gemfile
orm: MONGOID
- gemfile: active_record_50.gemfile
ruby: 3.0
- gemfile: active_record_50.gemfile
ruby: 3.1
- gemfile: active_record_50.gemfile
ruby: 3.2
- gemfile: active_record_50.gemfile
orm: MONGOID
- gemfile: active_record_51.gemfile
ruby: 3.0
- gemfile: active_record_51.gemfile
ruby: 3.1
- gemfile: active_record_51.gemfile
ruby: 3.2
- gemfile: active_record_51.gemfile
orm: MONGOID
- gemfile: active_record_52.gemfile
ruby: 3.0
- gemfile: active_record_52.gemfile
ruby: 3.1
- gemfile: active_record_52.gemfile
ruby: 3.2
- gemfile: active_record_52.gemfile
orm: MONGOID
- gemfile: active_record_60.gemfile
Expand All @@ -98,12 +110,20 @@ jobs:
ruby: 2.6
- gemfile: active_record_71.gemfile
orm: MONGOID
- gemfile: active_record_72.gemfile
ruby: 2.3
- gemfile: active_record_72.gemfile
ruby: 2.6
- gemfile: active_record_72.gemfile
orm: MONGOID
- gemfile: mongoid_54.gemfile
ruby: 2.7
- gemfile: mongoid_54.gemfile
ruby: 3.0
- gemfile: mongoid_54.gemfile
ruby: 3.1
- gemfile: mongoid_54.gemfile
ruby: 3.2
- gemfile: mongoid_54.gemfile
orm: ACTIVE_RECORD
- gemfile: mongoid_64.gemfile
Expand Down
19 changes: 19 additions & 0 deletions gemfiles/active_record_72.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
source 'https://rubygems.org'

# Specify your gem's dependencies in pluck_all.gemspec

gem 'sqlite3', '~> 1.4.1'
gem 'zeitwerk'
gem 'activerecord', '~> 7.2.1'
gem 'rails_compatibility', '~> 0.0.7'

gem 'carrierwave', '~> 0.11.0'
gem 'mimemagic', '< 0.4.3' # Used by carrierwave gem

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

group :test do
gem 'simplecov', '< 0.18'
end

gemspec path: '../'

0 comments on commit 7069101

Please sign in to comment.