aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Expand)AuthorAgeFilesLines
* Fixed rdoc.options use all over (closes #3639) [andy@tinnedfruit.org]David Heinemeier Hansson2006-02-261-1/+1
* Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.ma...David Heinemeier Hansson2006-02-251-11/+23
* Fix Object.subclasses_of to only return currently defined objects (closes #38...David Heinemeier Hansson2006-02-193-2/+13
* Fix constantize to handle names beginning with '::'. Closes #3803.Nicholas Seckar2006-02-113-2/+6
* Major components cleanup and speedup. Closes #3527.Jeremy Kemper2006-02-091-1/+2
* A more aesthetically pleasing implementation and changelog entryScott Barron2006-02-082-3/+4
* Make String#last behave more like Array#last, i.e.Scott Barron2006-02-082-0/+7
* Update versions to match latest from stableDavid Heinemeier Hansson2006-02-051-1/+1
* added some (pointless) test cases to dependency loading, the more the merrierTobias Lütke2006-02-042-8/+39
* Added delegation support to Module that allows multiple delegations at once (...David Heinemeier Hansson2006-02-044-1/+77
* Just go with Subclasses instead of OnlySubclassesDavid Heinemeier Hansson2006-02-041-2/+2
* Just go with Subclasses instead of OnlySubclassesDavid Heinemeier Hansson2006-02-042-9/+9
* Fixed Class.remove to not blow up on inheritanceDavid Heinemeier Hansson2006-02-041-3/+3
* Fix Reloadable to handle the case where a class that has been 'removed' has n...Nicholas Seckar2006-02-043-7/+9
* Don't allow Reloadable to be included into ModulesNicholas Seckar2006-02-032-1/+5
* Remove LoadingModuleNicholas Seckar2006-02-039-268/+2
* Add LoadingModule.clear! back temporarilyNicholas Seckar2006-02-021-0/+8
* Reloadable::OnlySubclassesNicholas Seckar2006-02-022-6/+8
* Add Reloadable::OnlySubclasses which handles the common case where a base cla...Nicholas Seckar2006-02-023-2/+48
* Further improvements to reloading codeNicholas Seckar2006-02-027-35/+84
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-2927-66/+261
* Add Object#instance_exec and Proc#bindSam Stephenson2006-01-235-0/+40
* Fix merge and dup for hashes with indifferent access (closes #3404) [kenneth....David Heinemeier Hansson2006-01-233-0/+29
* Fix the requires in option_merger_test to unbreak AS testsSam Stephenson2006-01-212-2/+6
* Make HashWithIndifferentAccess#update behave like Hash#update by returning th...Marcel Molina2006-01-083-2/+30
* Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSO...Sam Stephenson2005-12-2711-1/+219
* Add Object#with_options for DRYing up multiple calls to methods having shared...Sam Stephenson2005-12-155-0/+73
* Handle mutual dependencies with .rb suffix.Jeremy Kemper2005-11-283-15/+15
* Introduce Dependencies.warnings_on_first_load setting. If true, enables warn...Jeremy Kemper2005-11-243-2/+11
* Sever infinite loop for mutual dependencies. Closes #2997.Jeremy Kemper2005-11-245-7/+38
* Dependencies: set load_file_name = file_name if it ends in .rbJeremy Kemper2005-11-231-1/+1
* Enable warnings on first load only. File which are loaded but raise an excep...Jeremy Kemper2005-11-235-18/+91
* r3241@asus: jeremy | 2005-11-20 23:26:28 -0800Jeremy Kemper2005-11-211-0/+2
* r3240@asus: jeremy | 2005-11-20 23:22:34 -0800Jeremy Kemper2005-11-214-34/+48
* r3239@asus: jeremy | 2005-11-20 23:21:37 -0800Jeremy Kemper2005-11-211-5/+5
* r3219@asus: jeremy | 2005-11-20 03:07:19 -0800Jeremy Kemper2005-11-212-12/+17
* r3218@asus: jeremy | 2005-11-20 03:06:32 -0800Jeremy Kemper2005-11-211-0/+2
* r3217@asus: jeremy | 2005-11-20 03:06:01 -0800Jeremy Kemper2005-11-211-4/+2
* r3216@asus: jeremy | 2005-11-20 03:05:20 -0800Jeremy Kemper2005-11-212-55/+29
* r3215@asus: jeremy | 2005-11-20 02:05:56 -0800Jeremy Kemper2005-11-215-9/+5
* r3214@asus: jeremy | 2005-11-20 02:03:05 -0800Jeremy Kemper2005-11-211-48/+48
* r3213@asus: jeremy | 2005-11-20 02:01:28 -0800Jeremy Kemper2005-11-211-0/+2
* Turn warnings on when loading a file if Dependencies.mechanism == :load. Com...Jeremy Kemper2005-11-212-3/+14
* Pull out Array#to_strings in favor of more general Symbol#to_proc.Marcel Molina2005-11-213-9/+0
* Add Symbol#to_proc, which allows for, e.g. [:foo, :bar].map(&:to_s).Marcel Molina2005-11-213-0/+15
* Add Array#to_strings which to_s's all elements in an array.Marcel Molina2005-11-203-0/+10
* Add extended_by, extend_with_included_modules_from and copy_instance_variable...Marcel Molina2005-11-203-1/+99
* Rename Version constant to VERSION. Closes #2802.Marcel Molina2005-11-173-2/+6
* Change Inflector#constantize to use eval instead of const_getNicholas Seckar2005-11-163-3/+12
* Fix const_missing handler to ignore the trailing '.rb' on files when comparin...Nicholas Seckar2005-11-102-1/+3