Class: Rails::Rack::Debugger
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ Debugger
constructor
A new instance of Debugger.
Constructor Details
#initialize(app) ⇒ Debugger
Returns a new instance of Debugger.
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/rails/rack/debugger.rb', line 4 def initialize(app) @app = app ARGV.clear # clear ARGV so that script/server options aren't passed to IRB require_library_or_gem 'ruby-debug' ::Debugger.start ::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings) puts "=> Debugger enabled" rescue Exception puts "You need to install ruby-debug to run the server in debugging mode. With gems, use 'gem install ruby-debug'" exit end |
Instance Method Details
#call(env) ⇒ Object
18 19 20 |
# File 'lib/rails/rack/debugger.rb', line 18 def call(env) @app.call(env) end |