Skip to content

Commit 4378a21

Browse files
rafaelfrancarosa
authored andcommitted
Don't lock thor version to 1.3.x
This is blocking me to upgrade Rails to use thor 1.4.0. None of the Rails dependencies have upper bounds on any gem to avoid this kind of issues.
1 parent 7a7ae43 commit 4378a21

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Gemfile.lock

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PATH
77
concurrent-ruby (>= 1.3.1)
88
fugit (~> 1.11.0)
99
railties (>= 7.1)
10-
thor (~> 1.3.1)
10+
thor (>= 1.3.1)
1111

1212
GEM
1313
remote: https://rubygems.org/
@@ -87,13 +87,14 @@ GEM
8787
loofah (2.23.1)
8888
crass (~> 1.0.2)
8989
nokogiri (>= 1.12.0)
90-
mini_portile2 (2.8.8)
9190
minitest (5.25.4)
9291
mocha (2.1.0)
9392
ruby2_keywords (>= 0.0.5)
9493
mutex_m (0.3.0)
9594
mysql2 (0.5.6)
9695
nio4r (2.7.4)
96+
nokogiri (1.18.0-aarch64-linux-gnu)
97+
racc (~> 1.4)
9798
nokogiri (1.18.0-arm64-darwin)
9899
racc (~> 1.4)
99100
nokogiri (1.18.0-x86_64-darwin)
@@ -172,8 +173,10 @@ GEM
172173
ruby-progressbar (1.13.0)
173174
ruby2_keywords (0.0.5)
174175
securerandom (0.4.1)
175-
sqlite3 (1.5.4)
176-
mini_portile2 (~> 2.8.0)
176+
sqlite3 (2.7.3-aarch64-linux-gnu)
177+
sqlite3 (2.7.3-arm64-darwin)
178+
sqlite3 (2.7.3-x86_64-darwin)
179+
sqlite3 (2.7.3-x86_64-linux-gnu)
177180
stringio (3.1.2)
178181
thor (1.3.2)
179182
timeout (0.4.3)
@@ -185,6 +188,7 @@ GEM
185188
zeitwerk (2.6.0)
186189

187190
PLATFORMS
191+
aarch64-linux
188192
arm64-darwin-22
189193
arm64-darwin-23
190194
arm64-darwin-24

solid_queue.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
3030
spec.add_dependency "railties", rails_version
3131
spec.add_dependency "concurrent-ruby", ">= 1.3.1"
3232
spec.add_dependency "fugit", "~> 1.11.0"
33-
spec.add_dependency "thor", "~> 1.3.1"
33+
spec.add_dependency "thor", ">= 1.3.1"
3434

3535
spec.add_development_dependency "appraisal"
3636
spec.add_development_dependency "debug", "~> 1.9"

0 commit comments

Comments
 (0)