aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/deprecation
Commit message (Collapse)AuthorAgeFilesLines
...
* Create a deprecation behavior that triggers a notification for deprecation ↵wycats2010-06-291-9/+12
| | | | | | | | | | | | | | | | | notices, and make the behaviors independent of the environment names. * In Rails 2.3 apps being upgraded, you will need to add the deprecation configuration to each of your environments. Failing to do so will result in the same behavior as Rails 2.3, but with an outputted warning to provide information on how to set up the setting. * New Rails 3 applications generate the setting * The notification style will send deprecation notices using ActiveSupport::Notifications. Third-party tools can listen in to these notifications to provide a streamlined view of the deprecation notices occurring in your app. * The payload in the notification is the deprecation warning itself as well as the callstack from the point that triggered the notification.
* Allow deprecation messages with or without a final period.Jeremy Kemper2010-03-051-1/+2
|
* Commented metaprogramming turned out to be noisier not clearerJeremy Kemper2010-02-251-9/+9
|
* Add subscriber for ActionPack and move all logging inside it.José Valim2010-01-131-1/+1
|
* method_wrappers.rb needs active_support/core_ext/array/extract_optionsXavier Noria2010-01-011-0/+1
|
* Explicitly require loggerJeremy Kemper2009-10-141-1/+7
|
* Make logger work again (h/t Sam Ruby)Yehuda Katz2009-10-131-1/+1
|
* Fix deprecating =-methods by using send [#2431 status:resolved]Michael Siebert2009-08-091-9/+9
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* Don't undefine object_idJeremy Kemper2009-04-261-1/+1
|
* Fix dependencies revealed by testing in isolationJeremy Kemper2009-04-222-1/+4
|
* Merge branch 'master' into cherryJeremy Kemper2009-04-201-1/+1
| | | | | | | | | | | Conflicts: activesupport/CHANGELOG activesupport/lib/active_support/core_ext/class/delegating_attributes.rb activesupport/lib/active_support/core_ext/hash/conversions.rb activesupport/lib/active_support/core_ext/module/attribute_accessors.rb activesupport/lib/active_support/core_ext/string/multibyte.rb activesupport/lib/active_support/core_ext/time/calculations.rb activesupport/lib/active_support/deprecation.rb
* Dice up ActiveSupport::DeprecationJeremy Kemper2009-04-174-0/+186