aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed memory leak with Object#remove_subclasses_of, which inflicted a Rails a...David Heinemeier Hansson2005-06-301-1/+8
* Increased accuracy of 1.year by accounting for leap years. The time extensio...Jeremy Kemper2005-06-241-2/+2
* Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Se...David Heinemeier Hansson2005-06-244-0/+36
* Added Fix/Bignum#multiple_of? which returns true on 14.multiple_of?(7) and fa...David Heinemeier Hansson2005-06-212-1/+9
* Fixed Time#at_beginning_of_week returned the next Monday instead of the previ...David Heinemeier Hansson2005-06-161-1/+2
* r1300@iwill: jeremy | 2005-06-13 18:31:29 -0700Jeremy Kemper2005-06-131-10/+4
* Added Errors#add_on_blank which works like Errors#add_on_empty, but uses Obje...David Heinemeier Hansson2005-05-211-1/+4
* Slight change to allow custom date/time conversions #1326 [Rick Olson]David Heinemeier Hansson2005-05-212-11/+13
* Fixed that HashWithIndifferentAccess stringified all keys including symbols, ...David Heinemeier Hansson2005-05-191-1/+1
* Fixed Time#last_year to go back in time, not forward #1278 [fabien@odilat.com]David Heinemeier Hansson2005-05-191-3/+3