Flowdock

No documentation

This module has no description. You can help the Ruby on Rails community by adding new notes.

Constants

DEFAULT_BEHAVIORS = { :stderr => Proc.new { |message, callstack| $stderr.puts(message) $stderr.puts callstack.join("\n ") if debug }, :log => Proc.new { |message, callstack| logger = if defined?(Rails) && Rails.logger Rails.logger else require 'logger' Logger.new($stderr) end logger.warn message logger.debug callstack.join("\n ") if debug }, :notify => Proc.new { |message, callstack| ActiveSupport::Notifications.instrument("deprecation.rails", :message => message, :callstack => callstack) } }

Attributes

[RW] deprecation_horizon

The version the deprecated behavior will be removed, by default.

[RW] silenced
[RW] debug

Whether to print a backtrace along with the warning.

Show files where this module is defined (5 files)
Register or log in to add new notes.