forked from somethingnew2-0/faraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (31 loc) · 1.21 KB
/
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
36
source 'https://rubygems.org'
gem 'ffi-ncurses', '~> 0.3', :platforms => :jruby
gem 'jruby-openssl', '~> 0.8.8', :platforms => :jruby
gem 'rake'
group :test do
gem 'coveralls', :require => false
gem 'em-http-request', '>= 1.1', :require => 'em-http'
gem 'em-synchrony', '>= 1.0.3', :require => ['em-synchrony', 'em-synchrony/em-http']
gem 'addressable', '< 2.4.0'
gem 'excon', '>= 0.27.4'
gem 'httpclient', '>= 2.2'
gem 'mime-types', '~> 1.25', :platforms => [:jruby, :ruby_18]
gem 'minitest', '>= 5.0.5'
gem 'net-http-persistent', '~> 2.9.4'
gem 'patron', '>= 0.4.2', :platforms => :ruby
gem 'rack-test', '>= 0.6', :require => 'rack/test'
gem 'rest-client', '~> 1.6.0', :platforms => [:jruby, :ruby_18]
gem 'simplecov'
gem 'sinatra', '~> 1.3'
gem 'typhoeus', '~> 0.3.3', :platforms => [:ruby_18, :ruby_19, :ruby_20, :ruby_21]
# Below are dependencies of the gems we actually care about that have
# dropped support for older Rubies. Because they are not first-level
# dependencies, we don't need to specify an unconstrained version, so we can
# lump them together here.
if RUBY_VERSION < '2'
gem 'json', '< 2'
gem 'tins', '< 1.7.0'
gem 'term-ansicolor', '< 1.4'
end
end
gemspec