Class: Rack::Printout

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

Overview

prints the environment and request for simple debugging

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Printout

Returns a new instance of Printout.



4
5
6
# File 'lib/rack/contrib/printout.rb', line 4

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/rack/contrib/printout.rb', line 8

def call(env)
  # See http://rack.rubyforge.org/doc/SPEC.html for details
  puts "**********\n Environment\n **************"
  puts env.inspect
  
  puts "**********\n Response\n **************"
  response = @app.call(env)
  puts response.inspect

  puts "**********\n Response contents\n **************"
  response[2].each do |chunk|
    puts chunk
  end
  puts "\n \n"
  return response
end