Skip to content

Commit d8978cc

Browse files
committed
Fix pulling in dependency that is Ruby 3.2+
This dependency is only used while releasing the gem so it's fine to have it around and not work on all Rubies, but we do need to make it conditional on the `gems.rb` file otherwise we break earlier Rubies.
1 parent ddfec9e commit d8978cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ruby/gems.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
gem "http", "~> 5.0" unless RUBY_VERSION < "2.5"
1111
gem "pry"
1212
gem "pry-byebug" unless RUBY_VERSION > "3.1"
13-
gem "rubygems-await"
13+
gem "rubygems-await" unless RUBY_VERSION < "3.1"

0 commit comments

Comments
 (0)