Merge pull request #2193 from zhengjia/remove_ruby_prof_for_rubinius

only install ruby-prof for mri ruby
This commit is contained in:
Santiago Pastorino 2011-07-23 07:12:51 -07:00
commit 25ec3c86e0

10
Gemfile

@ -40,6 +40,12 @@ platforms :mri_19 do
gem "ruby-debug19", :require => "ruby-debug" unless RUBY_VERSION > "1.9.2" || ENV['TRAVIS']
end
platforms :mri do
group :test do
gem "ruby-prof" if RUBY_VERSION < "1.9.3"
end
end
platforms :ruby do
if ENV["RB_FSEVENT"]
gem "rb-fsevent"
@ -48,10 +54,6 @@ platforms :ruby do
gem "yajl-ruby"
gem "nokogiri", ">= 1.4.5"
group :test do
gem "ruby-prof" if RUBY_VERSION < "1.9.3"
end
# AR
gem "sqlite3", "~> 1.3.3"