Skip to content

Commit

Permalink
Merge pull request #1097 from koic/fix_build_error_in_ruby_3_5_ci_matrix
Browse files Browse the repository at this point in the history
Fix a build error for Ruby 3.5 CI matrix
  • Loading branch information
koic authored Feb 6, 2025
2 parents ab43ce9 + 1e7e9df commit cb65c87
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ source 'https://rubygems.org/'

gemspec

# FIXME: This is a workaround to resolve the following error in Ruby 3.5:
#
# /home/runner/work/webmock/webmock/vendor/bundle/ruby/3.5.0+0/gems/ethon-0.16.0/lib/ethon.rb:2:
# warning: logger was loaded from the standard library, but is not part of the default gems starting from Ruby 3.5.0.
#
# It can likely be removed once `ethon`, which is a dependency of `typhoeus`, manages its `logger` dependency.
gem 'logger'
gem 'ostruct'
gem 'rake'

Expand Down

0 comments on commit cb65c87

Please sign in to comment.