Skip to content

Commit cfa4a4c

Browse files
mjqsamuel-williams-shopify
authored andcommitted
Add explicit irb dependency
Under Ruby 3.4, `bake utopia:shell` logs the warning ``` /<snip>/utopia-2.30.0/lib/utopia/shell.rb:8: warning: irb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0. You can add irb to your Gemfile or gemspec to silence this warning. ``` Add an explicit dependency on the `irb` gem to the gemspec.
1 parent 7cab035 commit cfa4a4c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

utopia.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Gem::Specification.new do |spec|
2828
spec.add_dependency "concurrent-ruby", "~> 1.2"
2929
spec.add_dependency "console", "~> 1.24"
3030
spec.add_dependency "http-accept", "~> 2.1"
31+
spec.add_dependency "irb"
3132
spec.add_dependency "mail", "~> 2.6"
3233
spec.add_dependency "mime-types", "~> 3.0"
3334
spec.add_dependency "msgpack"

0 commit comments

Comments
 (0)