forked from gojek/wrest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (33 loc) · 666 Bytes
/
Gemfile
File metadata and controls
42 lines (33 loc) · 666 Bytes
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
37
38
39
40
41
42
source "http://rubygems.org"
gem 'hanna'
gem 'rubyforge'
gem 'simplecov', :platforms => :mri_19
group :multipart_support do
gem 'multipart-post', '~> 1'
end
group :libcurl_support do
# 1.8.7, 1.9.2, rbx
platforms :ruby do
gem 'patron', '~> 0.4'
end
end
group :nokogiri do
gem 'nokogiri'
end
group :libxml do
platforms :ruby do
gem 'libxml-ruby' unless Object.const_defined?('RUBY_ENGINE') && RUBY_ENGINE =~ /rbx/
end
end
group :jrexml do
platforms :jruby do
gem 'jrexml', '~> 0.5.3'
end
end
group :memcached_support do
gem 'dalli', '~> 1.0.1'
end
group :eventmachine_support do
gem 'eventmachine', '~> 0.12.10'
end
gemspec