Navigation Menu

Skip to content

Commit

Permalink
use the correct ruby-debug for the ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Jun 25, 2010
1 parent 02dba1a commit 2e1b239
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gemfile
@@ -1,3 +1,5 @@
source "http://rubygems.org"

gem "bundler"
gem "rake"
gem "jeweler"
Expand All @@ -11,4 +13,8 @@ gem "flexmock"
gem "rspec-core", :path => "."
gem "rspec-expectations", :path => "../rspec-expectations"
gem "rspec-mocks", :path => "../rspec-mocks"
gem "ruby-debug"
if RUBY_VERSION.to_s =~ /1.9/
gem "ruby-debug19"
else
gem "ruby-debug"
end

0 comments on commit 2e1b239

Please sign in to comment.