module Rack::ActionLogger

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/rack/action_logger.rb, line 10
def self.configure
  yield configuration
end
logger() click to toggle source
# File lib/rack/action_logger.rb, line 18
def self.logger
  configuration.logger
end
new(app) click to toggle source
# File lib/rack/action_logger.rb, line 6
def self.new(app)
  Context.new(app)
end