File: Gemfile

package info (click to toggle)
ruby-webmock 3.25.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,172 kB
  • sloc: ruby: 12,829; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 530 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'

platforms :jruby do
  gem 'jruby-openssl'
end