aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/delegation.rb
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-211-1/+0
|\
| * update some AS code examples to 1.9 hash syntax [ci skip]Francesco Rodriguez2012-09-121-10/+9
* | 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
* | Nice and easy delegation to the classMarc-Andre Lafortune2012-09-111-0/+3
|/
* no need to to_s here. Both String and Symbol can be interpolated into StringAkira Matsuda2012-06-061-3/+0
* String quotes and trailing spacesAlexey Gaziev2012-04-291-8/+8
* AS core_ext refactoring pt.2Alexey Gaziev2012-04-291-1/+1
* 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
* 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
* 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
* Don't do remove_possible_method when delegate is used. Two reasons: 1) warnin...Jon Leighton2011-07-181-4/+0
* Simplify boolean logic into ternary.Ben Orenstein2011-06-081-1/+1
* delegate method should treat :prefix => false same as :prefix => nilNeeraj Singh2010-09-011-1/+1
* fisting stack trace [#4349 state:resolved]Aaron Patterson2010-04-081-1/+1
* Merge branch 'master' into docrailswycats2010-03-261-1/+7
|\
| * Singleton classes returns parent's methods with instance_methods(false) and t...José Valim2010-03-191-1/+3
| * Eliminate warnings for AM on 1.8wycats2010-03-161-1/+5
* | reformats an example in the rdoc of delegateXavier Noria2010-02-061-2/+7
* | removes that beloved typo you only catch in github colored diffXavier Noria2010-01-211-1/+1
* | rewords rdoc about :allow_nil in Module#delegateXavier Noria2010-01-211-4/+4
* | a hash has no final keyXavier Noria2010-01-211-2/+2
|/
* Allow delegating to nil, because the method might actually exist on itBryan Helmkamp2009-08-101-4/+9
* Friendlier runtime exception if delegatee is nilJeremy Kemper2009-06-181-3/+9
* Delegated methods report the expected file/line in backtracesJeremy Kemper2009-06-181-2/+3
* Refactor ActionView::TemplateYehuda Katz + Carl Lerche2009-04-271-1/+3
* Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-3/+3
* Add :allow_nil option to delegate [#1127 state:resolved]Sergio Gil2008-12-211-1/+27
* Ensure only delegations to methods can have an automatic prefix. [#1235 state...Daniel Schierbeck2008-11-211-0/+4
* Simplified the implementation of the :prefix option.Daniel Schierbeck2008-10-191-1/+1
* Added documentation of the new :prefix option.Daniel Schierbeck2008-10-191-0/+25
* Made the :prefix option on Module#delegate accept a custom prefix.Daniel Schierbeck2008-10-191-1/+1
* Added :prefix option to Module#delegate.Daniel Schierbeck2008-10-191-1/+3
* Improve documentation coverage and markupXavier Noria2008-05-021-3/+5
* Document that the delegate method can delegate to things other than just meth...Marcel Molina2007-12-051-0/+20
* tiny doc patches [lifo]Rick Olson2007-07-251-0/+1
* Trim typo.Jeremy Kemper2006-05-081-1/+1
* Document Active Support's Module::delegate. Closes #5002.Jeremy Kemper2006-05-081-2/+27