Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gem "rubocop", "~> 1.21"
gem "httparty", "~> 0.22.0"

# parallel 2.0+ requires Ruby >= 3.3; constrain to 1.x to support Ruby 3.2
gem "parallel", "< 2.0"
gem "parallel", "< 2.1"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: This version bound contradicts the stated Ruby 3.2 compatibility constraint by allowing parallel 2.0.x. Keep the upper bound below 2.0 if the project must stay on 1.x.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At Gemfile, line 17:

<comment>This version bound contradicts the stated Ruby 3.2 compatibility constraint by allowing `parallel` 2.0.x. Keep the upper bound below 2.0 if the project must stay on 1.x.</comment>

<file context>
@@ -14,7 +14,7 @@ gem "rubocop", "~> 1.21"
 
 # parallel 2.0+ requires Ruby >= 3.3; constrain to 1.x to support Ruby 3.2
-gem "parallel", "< 2.0"
+gem "parallel", "< 2.1"
 
 group :development do
</file context>
Suggested change
gem "parallel", "< 2.1"
gem "parallel", "< 2.0"


group :development do
gem "pry-byebug"
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
resend (1.1.0)
resend (1.2.0)
base64
httparty (>= 0.22.0)

Expand Down Expand Up @@ -151,7 +151,7 @@ GEM
racc (~> 1.4)
nokogiri (1.19.2-x86_64-linux-gnu)
racc (~> 1.4)
parallel (1.28.0)
parallel (2.0.1)
parser (3.3.11.1)
ast (~> 2.4.1)
racc
Expand Down Expand Up @@ -273,7 +273,7 @@ PLATFORMS

DEPENDENCIES
httparty (~> 0.22.0)
parallel (< 2.0)
parallel (< 2.1)
pry-byebug
rails
rake (~> 13.0)
Expand Down
Loading