faraday/Gemfile
Alexander Popov c26df87b86 Update RuboCop
Require its specific version in `Gemfile`.

Fix it's installation in CI.

Enable new cops.

Resolve new offenses.

Drop support of Ruby 2.3
(it's not supported by RuboCop and by MRI:https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/)

Deprecate `Faraday::Request#method`, replace it with `#http_method`.
2020-04-19 17:44:07 +02:00

40 lines
947 B
Ruby

# frozen_string_literal: true
source 'https://rubygems.org'
ruby RUBY_VERSION
gem 'jruby-openssl', '~> 0.8.8', platforms: :jruby
group :development, :test do
gem 'pry'
gem 'rake'
end
group :lint, :development do
gem 'rubocop', '~> 0.82.0'
gem 'rubocop-performance', '~> 1.0'
end
group :test, :development do
gem 'coveralls', require: false
gem 'em-http-request', '>= 1.1', require: 'em-http'
gem 'em-synchrony', '>= 1.0.3', require: %w[em-synchrony em-synchrony/em-http]
gem 'excon', '>= 0.27.4'
gem 'httpclient', '>= 2.2'
gem 'multipart-parser'
gem 'net-http-persistent'
gem 'patron', '>= 0.4.2', platforms: :ruby
gem 'rack', '< 2.1'
gem 'rack-test', '>= 0.6', require: 'rack/test'
gem 'rspec', '~> 3.7'
gem 'rspec_junit_formatter', '~> 0.4'
gem 'simplecov'
gem 'typhoeus', '~> 1.3',
git: 'https://github.com/typhoeus/typhoeus.git',
require: 'typhoeus'
gem 'webmock', '~> 3.4'
end
gemspec