Skip to content

Commit

Permalink
use ruby-debug19 on ruby 1.9 because we're all on ruby 1.9 right?
Browse files Browse the repository at this point in the history
  • Loading branch information
hukl committed Dec 1, 2010
1 parent adca6f0 commit aecb42f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion globalize3.gemspec
Expand Up @@ -23,7 +23,14 @@ Gem::Specification.new do |s|
s.add_development_dependency 'mocha'
s.add_development_dependency 'pathname_local'
s.add_development_dependency 'test_declarative'
s.add_development_dependency 'ruby-debug'

case ENV["RUBY_VERSION"]
when /1\.8\.\d.+$/
s.add_development_dependency 'ruby-debug'
when /1\.9\.\d.+$/
s.add_development_dependency 'ruby-debug19'
end

s.add_development_dependency 'sqlite3-ruby'
# s.add_development_dependency 'vestal_versions'
end

0 comments on commit aecb42f

Please sign in to comment.