-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathGemfile
More file actions
41 lines (31 loc) · 918 Bytes
/
Gemfile
File metadata and controls
41 lines (31 loc) · 918 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
source 'https://rubygems.org/'
gemspec
# this is for travis-ci
gem 'rest-core', :path => 'rest-core' if
File.exist?("#{File.dirname(File.expand_path(__FILE__))}/rest-core/Gemfile")
gem 'rake'
gem 'pork'
gem 'muack'
gem 'webmock'
gem 'json'
gem 'json_pure'
gem 'multi_json'
gem 'rack'
gem 'simplecov', :require => false if ENV['COV']
gem 'coveralls', :require => false if ENV['CI']
platforms :ruby do
gem 'yajl-ruby'
end
platforms :rbx do
gem 'rubysl-weakref' # used in rest-core
gem 'rubysl-singleton' # used in rake
gem 'rubysl-rexml' # used in crack used in webmock
gem 'rubysl-bigdecimal' # used in crack used in webmock
gem 'rubysl-test-unit' # used in activesupport
gem 'rubysl-enumerator' # used in activesupport
gem 'rubysl-benchmark' # used in activesupport
gem 'racc' # used in journey used in actionpack
end
platforms :jruby do
gem 'jruby-openssl'
end