Skip to content

Commit

Permalink
Add concurrent-ruby to gemfiles to fix tests in Rails < 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ttstarck committed Jan 28, 2025
1 parent 8638960 commit ccb4a84
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ gem 'warning', require: false

gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"

gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
3 changes: 2 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ GEM
bigdecimal (3.1.4)
builder (3.2.4)
coderay (1.1.3)
concurrent-ruby (1.2.2)
concurrent-ruby (1.3.4)
crass (1.0.6)
date (3.3.3)
erubi (1.12.0)
Expand Down Expand Up @@ -218,6 +218,7 @@ DEPENDENCIES
appraisal-matrix
base64 (~> 0.2.0)
bigdecimal
concurrent-ruby (~> 1.3, < 1.3.5)
large_text_field!
minitest (~> 5.1)
minitest-reporters
Expand Down
1 change: 1 addition & 0 deletions gemfiles/rails_6_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 6.0.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 6.1.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 7.0.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 7.1.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_7_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 7.2.0"

gemspec path: "../"
1 change: 1 addition & 0 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ gem "test-unit", "~> 3.3"
gem "warning", require: false
gem "base64", "~> 0.2.0"
gem "mutex_m", "~> 0.3.0"
gem "concurrent-ruby", "~> 1.3", "< 1.3.5"
gem "rails", "~> 8.0.0"

gemspec path: "../"

0 comments on commit ccb4a84

Please sign in to comment.