module Timber::Config::Integrations::Rack
Public Instance Methods
Convenience method for accessing the {Timber::Integrations::Rack::ErrorEvent} middleware class specific configuration. See {Timber::Integrations::Rack::ExceptionEvent} for a list of methods available.
@example
config = Timber::Config.instance config.integrations.rack.error_event.enabled = false
# File lib/timber-rack/config.rb, line 35 def error_event Timber::Integrations::Rack::ErrorEvent end
Convenience method for accessing the {Timber::Integrations::Rack::HTTPContext} middleware class specific configuration. See {Timber::Integrations::Rack::HTTPContext} for a list of methods available.
@example
config = Timber::Config.instance config.integrations.rack.http_context.enabled = false
# File lib/timber-rack/config.rb, line 46 def http_context Timber::Integrations::Rack::HTTPContext end
Convenience method for accessing the {Timber::Integrations::Rack::HTTPEvents} middleware class specific configuration. See {Timber::Integrations::Rack::HTTPEvents} for a list of methods available.
@example
config = Timber::Config.instance config.integrations.rack.http_events.enabled = false
# File lib/timber-rack/config.rb, line 57 def http_events Timber::Integrations::Rack::HTTPEvents end
Convenience method for accessing the {Timber::Integrations::Rack::SessionContext} middleware class specific configuration. See {Timber::Integrations::Rack::SessionContext} for a list of methods available.
@example
config = Timber::Config.instance config.integrations.rack.session_context.enabled = false
# File lib/timber-rack/config.rb, line 68 def session_context Timber::Integrations::Rack::SessionContext end
Convenience method for accessing the {Timber::Integrations::Rack::UserContext} middleware class specific configuration. See {Timber::Integrations::Rack::UserContext} for a list of methods available.
@example
config = Timber::Config.instance config.integrations.rack.user_context.enabled = false
# File lib/timber-rack/config.rb, line 79 def user_context Timber::Integrations::Rack::UserContext end