From c62fcaa659149da8de6b21cb53bf87192f8e09b8 Mon Sep 17 00:00:00 2001 From: Vishnu Atrai Date: Thu, 5 May 2011 22:21:38 +0530 Subject: adding ruby-prof gem for ruby platform only #jruby --- Gemfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index a268db7929..ade260ffda 100644 --- a/Gemfile +++ b/Gemfile @@ -21,10 +21,6 @@ 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" @@ -47,7 +43,7 @@ platforms :ruby do gem 'json' gem 'yajl-ruby' gem "nokogiri", ">= 1.4.4" - + gem "ruby-prof" # AR gem "sqlite3", "~> 1.3.3" -- cgit v1.2.3 From 745c9f37362d9667a3fadb471fc254eb286c4558 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Thu, 5 May 2011 22:46:23 +0530 Subject: Removing from duplicate places. Only in Ruby platform needed. --- Gemfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index ade260ffda..5e0cc78d93 100644 --- a/Gemfile +++ b/Gemfile @@ -27,7 +27,6 @@ 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 @@ -43,7 +42,7 @@ platforms :ruby do gem 'json' gem 'yajl-ruby' gem "nokogiri", ">= 1.4.4" - gem "ruby-prof" + gem 'ruby-prof' # AR gem "sqlite3", "~> 1.3.3" -- cgit v1.2.3 From 976a9d99b11d48b180ed15b115eb320ffb880165 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Thu, 5 May 2011 23:17:07 +0530 Subject: Grouped the ruby-prof into test. --- Gemfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 5e0cc78d93..23b1a1096b 100644 --- a/Gemfile +++ b/Gemfile @@ -42,7 +42,10 @@ platforms :ruby do gem 'json' gem 'yajl-ruby' gem "nokogiri", ">= 1.4.4" - gem 'ruby-prof' + + group :test do + gem 'ruby-prof' + end # AR gem "sqlite3", "~> 1.3.3" -- cgit v1.2.3