diff options
author | Anton Davydov <antondavydov.o@gmail.com> | 2015-05-25 01:47:40 +0300 |
---|---|---|
committer | Anton Davydov <antondavydov.o@gmail.com> | 2015-05-25 01:51:04 +0300 |
commit | 0f53b010f963e625a5c02edbb7500b52630ec34c (patch) | |
tree | 63fd332bc1feee1fa22b3e8b73d0e5bd052a3520 | |
parent | f271f43f1059982e4e43c29ba2f8abc974ba0ea8 (diff) | |
download | rails-0f53b010f963e625a5c02edbb7500b52630ec34c.tar.gz rails-0f53b010f963e625a5c02edbb7500b52630ec34c.tar.bz2 rails-0f53b010f963e625a5c02edbb7500b52630ec34c.zip |
[skip ci] Add documentation for Deprecation::Behavior module
-rw-r--r-- | activesupport/lib/active_support/deprecation/behaviors.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/deprecation/behaviors.rb b/activesupport/lib/active_support/deprecation/behaviors.rb index 9f9dca8453..0cdc7e96f7 100644 --- a/activesupport/lib/active_support/deprecation/behaviors.rb +++ b/activesupport/lib/active_support/deprecation/behaviors.rb @@ -38,6 +38,18 @@ module ActiveSupport silence: ->(message, callstack) {}, } + # Behavior module allows to determine how to display deprecation messages. + # You can set any behaviors from +DEFAULT_BEHAVIORS+ constant or create + # custom behavior. Available behaviors: + # + # [+raise+] Raise <tt>ActiveSupport::DeprecationException</tt>. + # [+stderr+] Log all deprecation warnings to +$stderr+. + # [+log+] Log all deprecation warnings to +Rails.logger+. + # [+notify+] Use +ActiveSupport::Notifications+ to notify +deprecation.rails+. + # [+silence+] Do nothing. + # + # Setting behaviors only affects deprecations that happen after boot time. + # For more information you can read documentation for +behavior=+ method. module Behavior # Whether to print a backtrace along with the warning. attr_accessor :debug |