Merge pull request #30 from iankronquist/use-different-debuggers

Use different debuggers for ruby 2 and 1.9
This commit is contained in:
Hailee Kenney 2015-06-23 10:46:46 -07:00
commit 01f9b37c26
1 changed files with 5 additions and 1 deletions

View File

@ -26,5 +26,9 @@ end
group :development do
gem 'pry'
gem 'pry-debugger'
if RUBY_VERSION[0..2] == '1.9'
gem 'pry-debugger'
elsif RUBY_VERSION[0] == '2'
gem 'pry-byebug'
end
end