class Rack::Transform::Transformer

Constants

REQUEST_NOOP
RESPONSE_NOOP

Attributes

request[RW]
response[RW]

Public Class Methods

new() { |self| ... } click to toggle source
# File lib/rack/transform/transformer.rb, line 9
def initialize
  @request = REQUEST_NOOP
  @response = RESPONSE_NOOP
  yield self if block_given?
end