forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (40 loc) · 1.17 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
37
38
39
40
41
42
43
44
45
46
47
48
49
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'
group :doc do
# The current sdoc cannot generate GitHub links due
# to a bug, but the PR that fixes it has been there
# for some weeks unapplied. As a temporary solution
# this is our own fork with the fix.
gem 'sdoc', :git => 'git://github.com/fxn/sdoc.git'
gem 'RedCloth', '~> 4.2'
gem 'w3c_validators'
end
# 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