Class: Rails::Rack::Debugger

Inherits:
Object
  • Object
show all
Defined in:
railties/lib/rails/rack/debugger.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Debugger

Returns a new instance of Debugger.



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'railties/lib/rails/rack/debugger.rb', line 4

def initialize(app)
  @app = app

  ARGV.clear # clear ARGV so that rails server options aren't passed to IRB

  require 'debugger'

  ::Debugger.start
  ::Debugger.settings[:autoeval] = true if ::Debugger.respond_to?(:settings)
  puts "=> Debugger enabled"
rescue LoadError
  puts "You're missing the 'debugger' gem. Add it to your Gemfile, bundle it and try again."
  exit(1)
end

Instance Method Details

#call(env) ⇒ Object



19
20
21
# File 'railties/lib/rails/rack/debugger.rb', line 19

def call(env)
  @app.call(env)
end