-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specify including/excluding debugger #12
Comments
This is a problem on our team as well. I think it is less of an issue with including debugger and more of an issue with Bundler and not being able to have a local gemfile that doesn't get checked in. |
Hrm... with all the incompatibility with 2.0 and others asking for byebug, I think I'll create a branch without pry-debugger and folks can drop in whichever debug mechanism they want. @localredhead Can't you just set the |
@nixme that sounds far too easy to be reasonable! :) I'll suggest that to the RubyMine users in group. A branch that is void of pry-debugger sounds like the best scenario - but for me I liked the fact that it just worked when it was pre-bundled. |
+1 I would love a branch without debugger for now. Until debugger support works in Ruby 2.0 it would be great to have an easier alternative with pry-byebug as mentioned in #11 |
@nixme Did you ever get any further with the branch that excludes debugger? I'm refreshing gems on a project, and would like to move away from some of the forks necessary to get jazz_hands working on 2.0 correctly. |
Okay. A branch based off 0.5.2 is available at https://github.com/nixme/jazz_hands/tree/bring-your-own-debugger You can use it in bundler via: gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger' I might release that combined with @JHRE's #13 as major release 1.0 if this works for everyone. |
I've been able to come back and revisit this, running the following apears to work fine, this is on ruby 2.0.0
+1 for releasing this with @JHRE's work. |
We've been running the bring-your-own branch for a good while now and it has worked flawlessly. It's especially handy when you want to run ruby-head as the |
👍 would love to see this merged on master. |
I across this issue today and sort of confused why it still occurs with a fresh attempt to use jazz_hands on a freshly set-up laptop; |
@lozandier Have you specify the correct branch in your Gemfile?
|
That's what I did after trying out On Sun, Jul 6, 2014 at 6:09 AM, Charles Yang [email protected]
Kevin Lozandier |
The jazz_hands gem is dependent on debugger which is incompatible with Ruby 2. This is a known issues and I have implemented the workaround found here (nixme/jazz_hands#12).
Its conflicting with RubyMine's own debugger, but I still want to use the console with Pry for debugging simultaneously.
The text was updated successfully, but these errors were encountered: