A debugger plugin for interactive ruby and RoR debugging on Sublime Text.
By Shuky chen, based on the Debugger and Byebug gems.
In order to start debugging ruby or RoR applications all you need to do is to install Debugger plugin and press on F6 or Shift+F6 or Alt+Shift+F6
- Local debugging in Ruby and RoR applications.
- Stepping up, down, over, and into while debugging (jumps and goto also available).
- Add watch expression and run immediate code using the current program context.
- Monitoring on stack, threads, output, and local variables in the program.
- Builtin rails support.
- Breakpoints, conditional breakpoints, and temporary breakpoints (goto) support.
- Works in Sublime Text 2 and 3.
- MRI 1.9.3 support (using debugger gem).
- MRI 2.0.0 support (using byebug gem).
- Linux, Window, OSX support
- Edit and remove watch expressions
Here is a complete list of commands you can find Command Pallette under the Debugger
namespace or in the menu under Tools / Debugger
:
- Start Debugging - F6
- Start Debugging Rails - Shift+F6
- Start Debugging (Current file) - Alt+Shift+F6
- Pause Debugger - Alt+d, b
- Stop Debugging - Alt+d, k
- Toggle Breakpoint - F9
- Toggle Conditional Breakpoint - Shift+F9
- Clear Breakpoints - Alt+Shift+F9
- Step Over - F10
- Step Into - F11
- Step up - Alt+d, u
- Step down - Alt+d, d
- Continue - F8
- Run To Line (goto) - ctrl+F10 or ⌘+F10
- Jumo to line - Ctrl+Shift+F10 or ⌘+Shift+F10
- Run expression (evaluate) - F7
- Add watch expression - Alt+d, w
- Send input (to stdin) - Alt+d, i
- Show debug windows - Alt+l, s
- Hide debug windows - Alt+l, h
Sublime Debugger relies on two seperate gems for diffirent ruby versions. For Ruby 1.9.3 you need the debugger gem, which can be installed using gem install debugger
, and for Ruby 2.0.0 you need the byebug gem, which can be installed using gem install byebug
.
I cannot test this against all ruby versions, so I only explicity support Ruby 1.9.3 and Ruby 2.0.0. RVM is a good way to have multiple ruby versions installed at once and switch between them when debugging or running normally. Sublime Debugger will use the ruby version that you set as default, so you must set either Ruby 1.9.3 or Ruby 2.0.0 as the default. Remember to reinstall the byebug or debugger gem when you change ruby versions, or else you will get an Connection could not be made: [Errno ##] Connection refused
error.
If you need to have your ruby program running with an unspported ruby version you can manually add the version to the supported versions list. In the package's directory, which you can get to by going to preferences -> browse packages
in sublime text and then opening the Ruby Debugger
folder, there is a ruby_version_discoverer.rb
file where you can add your ruby version.
Execute "Package Control: Install Package" in the Command Pallette to retrieve a list of available packages.
Search in the list and install package Ruby Debugger
.
Clone the repository by executing the following command in your Packages directory:
git clone https://github.com/shuky19/sublime_debugger.git "Ruby Debugger"
Get the latest source from GitHub and extract the source into your Packages directory to a folder named "Ruby Debugger".
Note: You can locate your Packages directory in the menu under Preferences / Browse Packages...
Well, Most of the reasons for this error come from environmental problems, following the steps below will help you fix it:
- Enable logging: preferences -> Package Settings -> Ruby Debugger -> Settings - Default (you can use User as well)
- Run you ruby on a shell and make sure it runs perfectly.
- From that shell run
which ruby
andruby --version
- Run the debugger and compare its output to yours
- Figure out whether your ruby path comes from a different ruby environment (rbenv | rvm | custom executable)
- Figure out whether your ruby default version is not set appropriately
Either because there is another process running which is using ports 8989/8990 or the last debugger process is still alive (killall ruby
will solve that).
RubyDebugger is released under the MIT License.
- Settings file
- Break point windows updates
- Set view cursor on debug cursor change
- Nice message when port is taken
- Document & Refacor
- Ruby 1.8.7 support