Class: Rack::Debug

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/debug.rb

Constant Summary collapse

VERSION =
'0.1.0'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app, options = {}) ⇒ Debug

Returns a new instance of Debug.



9
10
11
# File 'lib/rack/debug.rb', line 9

def initialize(app, options={})
  @app = app
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



7
8
9
# File 'lib/rack/debug.rb', line 7

def app
  @app
end

Instance Method Details

#call(env) ⇒ Object



13
14
15
16
17
# File 'lib/rack/debug.rb', line 13

def call(env)
  LineCache::clear_file_cache
  Debugger.start_unix_socket_remote
  app.call(env)
end