forked from lostisland/faraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
29 lines (25 loc) · 915 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
source 'http://rubygems.org'
gem 'addressable', '~> 2.2.6'
gem 'multipart-post', '~> 1.1.0'
gem 'rack', ['>= 1.1.0', '<= 1.2.0']
group :development do
gem 'sinatra', '~> 1.2'
end
group :test do
gem 'em-http-request', '~> 0.3', :require => 'em-http'
gem 'em-synchrony', '~> 0.2', :require => ['em-synchrony', 'em-synchrony/em-http'], :platforms => :ruby_19
gem 'excon', '~> 0.6'
gem 'leftright', '~> 0.9', :require => false
gem 'patron', '~> 0.4'
gem 'rake', '~> 0.8'
gem 'test-unit', '~> 2.3'
gem 'typhoeus', '~> 0.2'
gem 'webmock', '~> 1.6'
# ActiveSupport::JSON will be used in ruby 1.8 and Yajl in 1.9; this is to test against both adapters
gem 'activesupport', '~> 2.3', :require => nil, :platforms => [:ruby_18, :jruby]
gem 'yajl-ruby', '~> 0.8', :require => 'yajl', :platforms => :ruby_19
end
platforms :jruby do
gem 'jruby-openssl', '~> 0.7'
gem 'ffi-ncurses', '~> 0.3'
end