aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/deprecation.rb
Commit message (Collapse)AuthorAgeFilesLines
* [Active Support] `rubocop -a --only Layout/EmptyLineAfterMagicComment`Koichi ITO2017-07-111-0/+1
|
* Use frozen-string-literal in ActiveSupportKir Shatrov2017-07-091-0/+1
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* :arrow_left: indentationAkira Matsuda2016-01-281-2/+2
| | | | [ci-skip]
* Remove circular requireRafael Mendonça França2015-03-271-2/+0
|
* Missing require 'active_support/deprecation'Akira Matsuda2015-03-271-0/+2
|
* Clean up `require ‘active_support/deprecation’` and remove circular requireDmitry Vorotilin2013-11-141-2/+0
|
* The third argument of deprecation_warning is always optionalRafael Mendonça França2013-04-161-1/+1
| | | [ci skip]
* Fix documentation to the custom DeprecatorRafael Mendonça França2013-04-161-1/+1
| | | [ci skip]
* Hash Syntax changes to 1.9 formatAvnerCohen2012-10-201-4/+4
|
* Copy-edit deprecation relared documentation [ci skip]Rafael Mendonça França2012-09-131-28/+10
|
* Change ActiveSupport::Deprecation to class.Piotr Niełacny2012-09-131-1/+33
| | | | | | | | | | | | | | | | | | | | | | | | ActiveSupport::Deprecation is now a class rather than a module. You can get instance of ActiveSupport::Deprecation calling #instance method. ActiveSupport::Deprecation.instance But when you need to get new object od ActiveSupport::Deprecation you need to just call #new. @instance = ActiveSupport::Deprecation.new Since you can create a new object, you can change the version and the name of the library where the deprecator concerned. ActiveSupport::Deprecation.new('2.0', 'MyGem') If you need use another deprecator instance you can select it in the options of deprecate method. deprecate :method, :deprecator => deprecator_instance Documentation has been updated.
* revises requires of some AS deprecation filesXavier Noria2012-04-051-1/+1
|
* Add a missing require for 'active_support/deprecation' in Module#deprecateEsad Hajdarevic2011-09-201-0/+2
|
* Remove a circular require in AS deprecations. This is safe as AS ↵Josh Kalderimis2011-05-121-2/+0
| | | | deprecations is autoloaded as needed.
* adds a couple of missing AS dependenciesRolf Timmermans2011-03-121-0/+2
|
* Dice up ActiveSupport::DeprecationJeremy Kemper2009-04-171-0/+9