rails--rails/railties/lib/rails/rack/debugger.rb

25 lines
589 B
Ruby
Raw Normal View History

2008-11-25 20:48:09 +00:00
module Rails
module Rack
class Debugger
def initialize(app)
@app = app
ARGV.clear # clear ARGV so that rails server options aren't passed to IRB
require 'ruby-debug'
2008-11-25 20:48:09 +00:00
::Debugger.start
::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
puts "=> Debugger enabled"
rescue LoadError
2008-11-25 20:48:09 +00:00
puts "You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'"
exit
end
def call(env)
@app.call(env)
end
end
end
end