forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (31 loc) · 875 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
36
37
38
39
source 'https://rubygems.org'
gemspec
local_rails_path = File.expand_path(File.dirname(__FILE__) + '/../rails')
if File.exists?(local_rails_path)
rails_gem_source = { :path => local_rails_path }
else
rails_gem_source = { :git => "git://github.com/rails/rails.git" }
end
gem 'activesupport', rails_gem_source.dup
gem 'activemodel', rails_gem_source.dup
gem 'rake'
# Add your own local bundler stuff
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
instance_eval File.read local_gemfile if File.exists? local_gemfile
platforms :mri do
group :test do
gem 'ruby-prof'
end
end
platforms :ruby do
gem 'json'
gem 'yajl-ruby'
gem 'nokogiri', '>= 1.4.5'
end
platforms :jruby do
gem 'json'
# This is needed by now to let tests work on JRuby
# TODO: When the JRuby guys merge jruby-openssl in
# jruby this will be removed
gem 'jruby-openssl'
end