aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module
Commit message (Expand)AuthorAgeFilesLines
* 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
* Added instance_accessor: false to Module#mattr_accessorVijay Dev2011-06-141-2/+6
* Simplify boolean logic into ternary.Ben Orenstein2011-06-081-1/+1
* Removed deprecated methods and related tests from ActiveSupportJosh Kalderimis2011-05-251-31/+0
* Deprecate attr_accessor_with_default.José Valim2011-05-161-0/+1
* Remove a circular require in AS deprecations. This is safe as AS deprecations...Josh Kalderimis2011-05-121-2/+0
* adds a couple of missing AS dependenciesRolf Timmermans2011-03-121-0/+2
* Improve clarity of example. Make it follow guidelines for output display.Ben Orenstein2011-02-191-5/+5
* Don't depend on rubygems loading thread (for Mutex)raggi2010-11-251-0/+1
* Use native attr_* macros for performance reasons.thedarkone2010-09-271-6/+13
* Fix 'warning: method redefined' [#5551 state:resolved]Krekoten' Marjan2010-09-251-4/+4
* attr_accessor_with_default should raise an ArgumentError not a RuntimeErrorAaron Patterson2010-09-241-3/+2
* delegate method should treat :prefix => false same as :prefix => nilNeeraj Singh2010-09-011-1/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-145-7/+7
* Introduced redefine_methodŁukasz Strzałkowski2010-07-191-0/+5
* It's not needed to initialize the attr when calling mattr_writerSantiago Pastorino2010-07-181-7/+1
* refactor evals and adds some __FILE__ and __LINE__Santiago Pastorino2010-05-201-2/+2
* fix stack trace lines on class_evalSantiago Pastorino2010-04-093-3/+3
* fisting stack trace [#4349 state:resolved]Aaron Patterson2010-04-081-1/+1
* LINE on class_eval need + 1, also removed comments [#4281 state:committed]Santiago Pastorino2010-03-271-20/+20
* fixing inconsistency with cattr_reader and matter_reader [#4172 state:resolved]Kabari Hendrick2010-03-271-5/+9
* Merge branch 'master' into docrailswycats2010-03-263-1/+27
|\
| * Singleton classes returns parent's methods with instance_methods(false) and t...José Valim2010-03-191-1/+3
| * Remove some 1.9 warnings (resulting in some fixed bugs). Remaining AM warning...wycats2010-03-171-0/+14
| * Eliminate warnings for AM on 1.8wycats2010-03-162-1/+11
* | Merge remote branch 'mainstream/master'Pratik Naik2010-02-144-55/+34
|\|
| * fixes Module#anonymous? for 1.9Xavier Noria2010-02-111-2/+6
| * moves Class#reachable? to Module#reachable?, bases implementation on anonymou...Xavier Noria2010-02-111-0/+10
| * defines Module#anonymous?Xavier Noria2010-02-111-0/+20
| * removes Module#as_load_path, which is no longer usedXavier Noria2010-02-071-25/+0