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 54ab569 commit b36bc58
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
- active_record_60.gemfile
- active_record_61.gemfile
- active_record_70.gemfile
- active_record_71.gemfile
- mongoid_54.gemfile
- mongoid_64.gemfile
- mongoid_73.gemfile
Expand Down Expand Up @@ -91,6 +92,12 @@ jobs:
ruby: 2.6
- gemfile: active_record_70.gemfile
orm: MONGOID
- gemfile: active_record_71.gemfile
ruby: 2.3
- gemfile: active_record_71.gemfile
ruby: 2.6
- gemfile: active_record_71.gemfile
orm: MONGOID
- gemfile: mongoid_54.gemfile
ruby: 2.7
- gemfile: mongoid_54.gemfile
Expand Down
19 changes: 19 additions & 0 deletions gemfiles/active_record_71.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.1.2'
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 b36bc58

Please sign in to comment.