aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-05 20:30:29 -0700
committerJosé Valim <jose.valim@gmail.com>2011-05-05 20:30:29 -0700
commit7adfd02b3f81bafe7272cdca59239fc24165eb2f (patch)
tree556a0bac59b41ace964175899013aae0faafb97b
parent030e1d06ca36e1ed235f8e34ac9bfb6906b12dce (diff)
parent976a9d99b11d48b180ed15b115eb320ffb880165 (diff)
downloadrails-7adfd02b3f81bafe7272cdca59239fc24165eb2f.tar.gz
rails-7adfd02b3f81bafe7272cdca59239fc24165eb2f.tar.bz2
rails-7adfd02b3f81bafe7272cdca59239fc24165eb2f.zip
Merge pull request #400 from arunagw/ruby_prof
Adding ruby-prof gem for ruby platform only #jruby
-rw-r--r--Gemfile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index a268db7929..23b1a1096b 100644
--- a/Gemfile
+++ b/Gemfile
@@ -21,17 +21,12 @@ group :doc do
gem "RedCloth", "~> 4.2" if RUBY_VERSION < "1.9.3"
end
-group :test do
- gem "ruby-prof"
-end
-
# AS
gem "memcache-client", ">= 1.8.5"
platforms :mri_18 do
gem "system_timer"
gem "ruby-debug", ">= 0.10.3"
- gem 'ruby-prof'
gem "json"
end
@@ -48,6 +43,9 @@ platforms :ruby do
gem 'yajl-ruby'
gem "nokogiri", ">= 1.4.4"
+ group :test do
+ gem 'ruby-prof'
+ end
# AR
gem "sqlite3", "~> 1.3.3"