Sha256: 4a1a6572575384ace24e630505569da68e44f0882d7e493983dc800462202a75
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
gemfile <<-RB gem 'typhoeus', '~> 0.7.1' gem 'rack' # We try translating URIs through Addressable if it's there, so test with it. gem 'addressable', :require => 'addressable/uri' RB gemfile <<-RB gem 'typhoeus', '~> 0.7.1' gem 'rack' RB gemfile <<-RB gem 'typhoeus', '~> 0.6.9' gem 'rack' RB if RUBY_VERSION < '2.4.0' gemfile <<-RB # Compatibility issues with ethon 0.5.12 https://github.com/typhoeus/ethon/issues/51 gem 'ethon', '0.5.11' # ethon 0.5.11 requires mime-types ~> 1.18 # normally, this wouldn't be a problem, but # we have other checks to work around other # mime-type dependency issues, so we need # to specify it here. gem 'mime-types', '~> 1.18' gem 'typhoeus', '~> 0.5.4' gem 'rack' RB # Earliest supported version gemfile <<-RB # Compatibility issues with ethon 0.5.12 https://github.com/typhoeus/ethon/issues/51 gem 'ethon', '0.5.11' # ethon 0.5.11 requires mime-types ~> 1.18 # normally, this wouldn't be a problem, but # we have other checks to work around other # mime-type dependency issues, so we need # to specify it here. gem 'mime-types', '~> 1.18' gem 'typhoeus', '0.5.3' gem 'rack' RB end # Prior to supported versions gemfile <<-RB # Compatibility issues with ethon 0.5.12 https://github.com/typhoeus/ethon/issues/51 gem 'ethon', '0.5.11' # ethon 0.5.11 requires mime-types ~> 1.18 # normally, this wouldn't be a problem, but # we have other checks to work around other # mime-type dependency issues, so we need # to specify it here. gem 'mime-types', '~> 1.18' gem 'typhoeus', '0.5.2' gem 'rack' RB # vim: ft=ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-4.1.0.333 | test/multiverse/suites/typhoeus/Envfile |
newrelic_rpm-4.0.0.332 | test/multiverse/suites/typhoeus/Envfile |