back

Using debugger in Rails 3

Because of how Bundler works, the command “rails server—debugger” will fail unless you specify the ruby-debug gem.

So, in your Gemfile, you need to include:

-

1
2
3

gem "ruby-debug"

March 21, 2010