aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module
Commit message (Expand)AuthorAgeFilesLines
* Make caller attribute in deprecation methods optionalAlexey Gaziev2012-10-301-1/+1
* Hash Syntax changes to 1.9 formatAvnerCohen2012-10-201-4/+4
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-213-4/+0
|\
| * update AS/core_ext docs [ci skip]Francesco Rodriguez2012-09-122-3/+0
| * update some AS code examples to 1.9 hash syntax [ci skip]Francesco Rodriguez2012-09-122-12/+11
* | Update delegate docs with new hash syntax [ci skip]Carlos Antonio da Silva2012-09-201-10/+10
* | Add changelog entry and docs about class delegation using the symbol :classCarlos Antonio da Silva2012-09-201-0/+12
* | Merge pull request #7613 from marcandre/delegate_to_classJeremy Kemper2012-09-201-0/+3
|\ \
| * | Nice and easy delegation to the classMarc-Andre Lafortune2012-09-111-0/+3
| |/
* | 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
|/
* no need to to_s here. Both String and Symbol can be interpolated into StringAkira Matsuda2012-06-061-3/+0
* fix example format and add markup in Module#mattr_accessor documentation [ci ...Francesco Rodriguez2012-05-291-10/+10
* update Module#mattr_accessor documentation [ci skip]Francesco Rodriguez2012-05-261-6/+6
* removing unnecessary 'examples' noise from activesupportFrancesco Rodriguez2012-05-131-2/+0
* String quotes and trailing spacesAlexey Gaziev2012-04-293-11/+11
* AS core_ext refactoring pt.2Alexey Gaziev2012-04-295-13/+14
* Remove Module#delegate!Daniel Schierbeck2012-04-121-52/+0
* Add back the old `deprecate` method as `deprecate!`Daniel Schierbeck2012-04-121-0/+52
* Change API docs regarding delegation to non-public methodsDaniel Schierbeck2012-04-121-1/+1
* Optimize the performance of #delegateDaniel Schierbeck2012-04-121-9/+13
* revises requires of some AS deprecation filesXavier Noria2012-04-051-1/+1
* Merge pull request #3084 from esad/masterXavier Noria2012-04-051-0/+2
|\
| * Add a missing require for 'active_support/deprecation' in Module#deprecateEsad Hajdarevic2011-09-201-0/+2
* | use undef_method to avoid NameError exceptions all the timeAaron Patterson2012-03-311-5/+1
* | validate attribute names in class and module attribute accessorsDmitry Plashchynski2012-03-301-0/+2
* | Remove deprecation from AS::Deprecation behavior, some minor cleanupsCarlos Antonio da Silva2012-03-161-7/+9
* | Fix indentation in code example of DelegationTomasz Zurkowski2012-01-201-19/+19
* | deprecates Module#local_constant_namesXavier Noria2012-01-121-2/+12
* | removes the compatibility method Module#method_namesXavier Noria2011-12-251-5/+0
* | removes the compatibility method Module#instance_method_namesXavier Noria2011-12-251-4/+0
* | ruby 1.9 returns method names as symbolsSergey Nartimov2011-12-251-11/+6
* | Module#name returns nil for anonymous class in ruby 1.9Vasiliy Ermolovich2011-12-251-6/+2
* | remove deprecated Module#synchronize from ActiveSupportSergey Nartimov2011-12-241-45/+0
* | Remove more dead code from AS.José Valim2011-12-201-18/+6
* | Initial pass at removing dead 1.8.x code from Active Support.José Valim2011-12-201-21/+2
* | Module#synchronize is deprecated with no replacement. Please use `monitor` f...Aaron Patterson2011-11-291-0/+2
* | defines Module#qualified_const_(defined?|get|set) and String#deconstantizeXavier Noria2011-10-291-0/+64
* | Use safe_constantize where possible.José Valim2011-09-231-3/+1
|/
* Revert all the stuff to do with disallowing non-public methods for Module#del...Jon Leighton2011-08-251-6/+2
* prefer ends_with? over slicingXavier Noria2011-08-161-1/+2
* Add a test for delegating a method ending in '=' as this is a special case.Jon Leighton2011-08-151-0/+1
* Need to include public_sendArun Agrawal2011-08-151-0/+1
* Split up the definitions in Module#delegate depending on :allow_nil, and don'...Jon Leighton2011-08-151-17/+22
* Fix the line number in the backtrace when Module#delegate raisesJon Leighton2011-08-151-1/+1
* Just do the method call directly in Module#delegate, if we can (we cannot for...Jon Leighton2011-08-151-1/+4
* Refactored to more closely resemble idiom applied for on_nilEvan Light2011-08-051-5/+11
* Remove unnecessary require (happened after fcbde454f6)Dmitriy Kiriyenko2011-08-011-2/+0
* remove_possible_method: test if method existsBrad Ediger2011-07-311-2/+7
* Don't do remove_possible_method when delegate is used. Two reasons: 1) warnin...Jon Leighton2011-07-181-4/+0