forked from rails/activeresource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (26 loc) · 697 Bytes
/
Gemfile
File metadata and controls
33 lines (26 loc) · 697 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
source 'https://rubygems.org'
gemspec
gem 'activesupport', "4.0.0.beta1"
gem 'activemodel', "4.0.0.beta1"
gem 'rails-observers', github: 'rails/rails-observers', branch: 'master'
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