Skip to content

Commit

Permalink
Loosen rails dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
blowmage committed Jun 25, 2024
1 parent abe5842 commit e186019
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- '3.2'
gemfile:
- gemfiles/rails-7.1.0.gemfile
- gemfiles/rails-7.2.0.beta2.gemfile

env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ gemspec
gem "irb"
gem "rails", "~> 7.1.0"
gem "rake"
gem "sqlite3"
gem "sqlite3", "~> 1.4"
12 changes: 12 additions & 0 deletions gemfiles/rails-7.2.0.beta2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
source "http://rubygems.org"

gem "minitest-rails", path: "../"
gem "rails", "7.2.0.beta2"
gem "rake"
gem "sqlite3"

gem "minitest-autotest", "~> 1.1"
gem "minitest-focus", "~> 1.4"
gem "minitest-rg", "~> 5.2"
gem "rdoc", "~> 6.5"
gem "rubocop", "~> 1.57.0"
2 changes: 1 addition & 1 deletion minitest-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |gem|
gem.required_ruby_version = ">= 2.7.0"

gem.add_dependency "minitest", "~> 5.20"
gem.add_dependency "railties", "~> 7.1.0"
gem.add_dependency "railties", ">= 7.1.0", "< 8.0.0"

gem.add_development_dependency "minitest-autotest", "~> 1.1"
gem.add_development_dependency "minitest-focus", "~> 1.4"
Expand Down

0 comments on commit e186019

Please sign in to comment.