2008-11-25 15:48:09 -05:00
|
|
|
module Rails
|
|
|
|
module Rack
|
|
|
|
class Debugger
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
|
2010-02-06 11:18:10 -05:00
|
|
|
ARGV.clear # clear ARGV so that rails server options aren't passed to IRB
|
2009-11-23 16:36:48 -05:00
|
|
|
|
2012-04-17 06:01:05 -04:00
|
|
|
require 'debugger'
|
2011-05-23 09:31:33 -04:00
|
|
|
|
2008-11-25 15:48:09 -05:00
|
|
|
::Debugger.start
|
|
|
|
::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
|
|
|
|
puts "=> Debugger enabled"
|
2011-05-23 09:31:33 -04:00
|
|
|
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
|