mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Enable ruby-debug only for MRI
Signed-off-by: José Valim <jose.valim@gmail.com>
This commit is contained in:
committed by
José Valim
parent
715f7c0b7c
commit
5573ab2047
4
Gemfile
4
Gemfile
@@ -11,10 +11,10 @@ group :mri do
|
||||
gem 'yajl-ruby'
|
||||
gem "nokogiri", ">= 1.4.0"
|
||||
|
||||
if RUBY_VERSION < '1.9'
|
||||
if !defined?(RUBY_ENGINE) && RUBY_VERSION < '1.9'
|
||||
gem "system_timer"
|
||||
gem "ruby-debug", ">= 0.10.3"
|
||||
elsif RUBY_VERSION < '1.9.2' && !ENV['CI']
|
||||
elsif defined?(RUBY_ENGINE) && RUBY_ENGINE == "ruby" && RUBY_VERSION < '1.9.2' && !ENV['CI']
|
||||
gem "ruby-debug19"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user