class Rack::Deflatermaus
Constants
- VERSION
Public Class Methods
new(app)
click to toggle source
# File lib/rack/deflatermaus.rb, line 8 def initialize(app) @deflater = Deflater.new(app) end
Public Instance Methods
call(env)
click to toggle source
# File lib/rack/deflatermaus.rb, line 12 def call(env) Player.new.play @deflater.call(env) end