1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/rack/debugger.rb

25 lines
566 B
Ruby
Raw Normal View History

2008-11-25 15:48:09 -05: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 'debugger'
2008-11-25 15:48:09 -05:00
::Debugger.start
::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
puts "=> Debugger enabled"
rescue LoadError
2013-05-13 06:14:47 -04:00
puts "You're missing the 'debugger' gem. Add it to your Gemfile, bundle it and try again."
exit(1)
2008-11-25 15:48:09 -05:00
end
def call(env)
@app.call(env)
end
end
end
end