aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Expand)AuthorAgeFilesLines
* Further improvements to reloading codeNicholas Seckar2006-02-022-13/+5
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-2912-46/+280
* Add Object#instance_exec and Proc#bindSam Stephenson2006-01-232-0/+18
* Fix merge and dup for hashes with indifferent access (closes #3404) [kenneth....David Heinemeier Hansson2006-01-231-0/+8
* Make HashWithIndifferentAccess#update behave like Hash#update by returning th...Marcel Molina2006-01-081-2/+5
* Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSO...Sam Stephenson2005-12-273-0/+30
* Add Object#with_options for DRYing up multiple calls to methods having shared...Sam Stephenson2005-12-151-0/+4
* r3240@asus: jeremy | 2005-11-20 23:22:34 -0800Jeremy Kemper2005-11-211-16/+25
* r3215@asus: jeremy | 2005-11-20 02:05:56 -0800Jeremy Kemper2005-11-212-2/+2
* Pull out Array#to_strings in favor of more general Symbol#to_proc.Marcel Molina2005-11-211-3/+0
* Add Symbol#to_proc, which allows for, e.g. [:foo, :bar].map(&:to_s).Marcel Molina2005-11-211-0/+5
* Add Array#to_strings which to_s's all elements in an array.Marcel Molina2005-11-201-0/+4
* Add extended_by, extend_with_included_modules_from and copy_instance_variable...Marcel Molina2005-11-201-1/+20
* Define kernel.rb methods in "class Object" instead of "module Kernel" to work...Sam Stephenson2005-11-071-1/+1
* Added Kernel#silence_stderr to silence stderr for the duration of the given b...Sam Stephenson2005-11-071-0/+26
* Restore the fast Numeric#blank? Closes #2714.Jeremy Kemper2005-11-031-0/+6
* Changed 0.blank? to false rather than true since it violates everyone's expec...Jeremy Kemper2005-11-022-10/+4
* Added petabytes and exebytes to numeric extensions (closes #2397) [timct@mac....David Heinemeier Hansson2005-10-261-0/+11
* Added Time#end_of_month to accompany Time#beginning_of_month (closes #2514) [...David Heinemeier Hansson2005-10-261-0/+8
* Add title case method to String to do, e.g., 'action_web_service'.titlecase #...Marcel Molina2005-10-191-0/+6
* Remove generated code from app traces; improve accuracy of framework tracesNicholas Seckar2005-10-181-1/+6
* Dont include unnecessary active support classes in docsDavid Heinemeier Hansson2005-10-162-8/+8
* Update Exception extension to show the first few framework frames in an appli...Nicholas Seckar2005-10-161-1/+7
* Added Extension extension to provide support for clean backtraces.Nicholas Seckar2005-10-151-0/+18
* Added Enumerable#first_matchNicholas Seckar2005-10-141-0/+9
* Fixed that Time#change should also reset usec when also resetting minutes #24...David Heinemeier Hansson2005-10-131-1/+1
* Replace '%e' from long and short time formats as Windows does not support it....Marcel Molina2005-10-101-2/+2
* Added to_s(:db) to RangeDavid Heinemeier Hansson2005-10-093-2/+27
* Move require_library_or_gem out of AR's abstract_adapter and into ActiveSuppo...Marcel Molina2005-10-081-0/+22
* Add :rfc822 as an option for Time#to_s (to get rfc822-formatted times)Jamis Buck2005-10-031-4/+5
* Added native, faster implementations of .blank? for the core types #2286 [skae]David Heinemeier Hansson2005-09-241-0/+36
* Fixed memory leak with Active Record classes when Dependencies.mechanism = :l...David Heinemeier Hansson2005-09-201-9/+0
* Added Hash#reverse_merge, Hash#reverse_merge!, and Hash#reverse_update to eas...David Heinemeier Hansson2005-09-113-6/+41
* Added Array#to_sentence that'll turn ['one', 'two', 'three'] into 'one, two, ...David Heinemeier Hansson2005-09-113-14/+24
* Added test to ensure that silence_warnings also returned its valueDavid Heinemeier Hansson2005-09-111-1/+1
* Added Kernel#silence_warnings and puts it into use throughout the frameworkDavid Heinemeier Hansson2005-09-111-0/+14
* Forgot to add core_ext/string/starts_ends_with.rbDavid Heinemeier Hansson2005-09-091-0/+20
* Added String#starts_with? and String#ends_with? #2118 [thijs@vandervossen.net]David Heinemeier Hansson2005-09-091-0/+2
* Make assert_valid_keys slightly more lenientDavid Heinemeier Hansson2005-09-091-2/+2
* Added String#at, String#from, String#to, String#first, String#last in ActiveS...David Heinemeier Hansson2005-09-032-1/+61
* Make Time#last_month work when invoked on the 31st of a month.Jamis Buck2005-08-311-6/+14
* Add Time.days_in_month, and make Time#next_month work when invoked on the 31s...Jamis Buck2005-08-311-5/+28
* Fixed that Time#midnight would have a non-zero usec on some platforms #1836Jamis Buck2005-07-311-2/+2
* Factor Fixnum and Bignum extensions into Integer classNicholas Seckar2005-07-194-14/+9
* Add ordinalize to Fixnum and Bignum instancesNicholas Seckar2005-07-181-0/+3
* Added stripping of _id to String#humanize, so "employee_id" becomes "Employee...David Heinemeier Hansson2005-07-171-0/+2
* Added Fixnum#ordinalize to turn 1.ordinalize to "1st", 3.ordinalize to "3rd",...David Heinemeier Hansson2005-07-171-0/+15
* Added more efficient implementation of the development mode reset of classes ...David Heinemeier Hansson2005-07-071-9/+9
* Remove fix against memory leaks in development mode as it killed development ...David Heinemeier Hansson2005-07-071-5/+9
* Fixed documentation for release (AS)David Heinemeier Hansson2005-07-063-7/+7