forked from lostisland/faraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
35 lines (29 loc) · 868 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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', '< 2.1'
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