Use ruby-debug19 on Ruby >= 1.9 (thanks to github.com/kollektiv)

This commit is contained in:
Joe Ferris 2011-02-17 13:32:23 -05:00
parent e817958427
commit 240342b7a8
1 changed files with 6 additions and 1 deletions

View File

@ -23,10 +23,15 @@ Gem::Specification.new do |s|
s.add_development_dependency("sqlite3-ruby", "~> 1.3.2")
s.add_development_dependency("mocha", "~> 0.9.10")
s.add_development_dependency("rspec-rails", "~> 2.3.0")
s.add_development_dependency("ruby-debug", "~> 0.10.4")
s.add_development_dependency("cucumber", "~> 0.10.0")
s.add_development_dependency("aruba", "~> 0.2.7")
if RUBY_VERSION >= "1.9"
s.add_development_dependency("ruby-debug19", "~> 0.11.6")
else
s.add_development_dependency("ruby-debug", "~> 0.10.4")
end
if s.respond_to? :specification_version then
s.specification_version = 3
else