Skip to content

Commit

Permalink
Add gemfile for Rails 7.1 / 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Aug 18, 2024
1 parent 63df8d6 commit 89d2b9b
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
- no_rails
- rails_6.1
- rails_7
- rails_7.1
- rails_7.2
exclude:
- os: macos
ruby: head
Expand Down
11 changes: 11 additions & 0 deletions gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.1.3'
gem 'sqlite3'
gem 'mutex_m'
gem 'base64'
gem 'drb'

gemspec :path => '../'
11 changes: 11 additions & 0 deletions gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.2.0'
gem 'sqlite3'
gem 'mutex_m'
gem 'base64'
gem 'drb'

gemspec :path => '../'

0 comments on commit 89d2b9b

Please sign in to comment.