mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
34 lines
862 B
Ruby
34 lines
862 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
ruby RUBY_VERSION
|
|
|
|
gem 'jruby-openssl', '~> 0.8.8', platforms: :jruby
|
|
gem 'rake'
|
|
|
|
group :development, :test do
|
|
gem 'pry'
|
|
end
|
|
|
|
group :test 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-test', '>= 0.6', require: 'rack/test'
|
|
gem 'rspec', '~> 3.7'
|
|
gem 'rspec_junit_formatter', '~> 0.4'
|
|
gem 'rubocop-performance', '~> 1.0'
|
|
gem 'simplecov'
|
|
gem 'typhoeus', '~> 1.3', git: 'https://github.com/typhoeus/typhoeus.git',
|
|
require: 'typhoeus'
|
|
gem 'webmock', '~> 3.4'
|
|
end
|
|
|
|
gemspec
|