ruby-debug with Ruby 1.9.x and Rails 3 on RVM

Ruby, Ruby on Rails, Uncategorized Add comments

Things are moving fast in the Rails/Ruby world with the imminent releases of Ruby 1.9.2 and Rails 3.

An essential tool for a smooth transition is RVM by Wayne Seguin (Where can i vote for this guy as Ruby Hero? Ah, it’s here.)

In the first Rails 3 Railscast RVM sounds more like an afterthought and only necessary if you don’t have Ruby 1.8.7+ installed, but it’s advisable to not even try the migration to Rails 3 without installing RVM and a dedicated version of Ruby (can be the same version as your current system Ruby).

While taking the plunge with Rails 3 and its many breaking changes, why not go all the way in a twisted pun sort of way? As Ryan Bates recommends in Railscast 208, it may be time to skip Ruby 1.9.1 and install ruby-head on RVM, which is currently 1.9.2, expected to be released in a few months.

Once you have Rails 3 (currently Beta 3) and Ruby 1.9.2 installed on RVM, perhaps with this nifty script that includes the entire starting “gemset”, you will find that the ruby-debug gem can’t be installed on Ruby 1.9.x, the installer will tell you

Can’t handle 1.9.x yet

and other stuff.

Don’t despair Mark Moseley has created all the necessary gems for you. You can install the ruby 1.9.1 and 1.9.2. compatible debugger and the debug ide with the following commands (thanks to Wayne’s exemplary documentation):

gem install ruby-debug19 — –with-ruby-include=$rvm_path/src/ruby-head/

gem install ruby-debug-ide19 — –with-ruby-include=$rvm_path/src/ruby-head/

Now when you run

rails server –debugger

it still won’t be working, saying

“You need to install ruby-debug to run the server in debugging mode.”

So, as the last step, put this in your Gemfile

gem ‘ruby-debug19′, :require => ‘ruby-debug’

Run ‘bundle install’ if you feel like it, and now the debugger should work. However, the debugger will now start every time you start the server.

To start the server without the debugger, you’ll have to uncomment the line above in the Gemfile again.

Anyone with a workaround for this please post in the comments.

Hope it helps.

P.S. Don’t forget to give back to Open Source!

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

6 Responses to “ruby-debug with Ruby 1.9.x and Rails 3 on RVM”

  1. mooman Says:

    totally awesome and helped me out so much!! thank you!!

  2. Bruno Grasselli Says:

    It worked pretty well for me on linux, but not on mac os x.

    This command works on both (from rvm documentation):

    gem install ruby-debug19 — –with-ruby-include=”$rvm_src_path/$(rvm tools identifier)/”

    Thanks for the tip!

  3. peetucket Says:

    Thanks - saved me from pulling some hair out.

  4. brownman Says:

    now i’m absolutly happy :)
    thanks man !

  5. rubyconvict Says:

    Thanks Bruno, your one-liner works on ubuntu with rvm.

  6. Leonardo Daronco Says:

    Thanks, it helped a lot!

    I had some trouble installing ruby-debug19 using bundler. The installation of linecache19 and ruby-debug-base19 was stalling while building the gems with native extensions. But using “gem install –with-ruby-include” the installation was ok.

    The solution was to the following lines to “.bundle/config”:

    BUNDLE_BUILD__LINECACHE19: –with-ruby-include=$rvm_path/src/$(rvm tools identifier)/
    BUNDLE_BUILD__RUBY-DEBUG-BASE19: –with-ruby-include=$rvm_path/src/$(rvm tools identifier)/

Leave a Reply

WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS Log in