aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Expand)AuthorAgeFilesLines
* Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a Tim...Geoff Buesing2008-01-233-0/+72
* Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibili...Geoff Buesing2008-01-161-0/+20
* Refactor number-to-HH:MM-string conversion logic from TimeZone#formatted_offs...Geoff Buesing2008-01-122-1/+22
* Simplify to_formatted_s docs. Closes #10747 [Jeremy Kemper]Jeremy Kemper2008-01-093-74/+38
* Document date and time to_formatted_s. Closes #10747 [leethal]Jeremy Kemper2008-01-093-5/+66
* Fix up Enumerable#group_byJeremy Kemper2008-01-091-7/+14
* Improve documentation to classify to make it clear that it expects names to b...Michael Koziarski2008-01-081-2/+5
* Use a decorator module for Files instantiated by Hash.from_xml. Add test cove...Jeremy Kemper2008-01-061-3/+18
* Simplify and speedup Hash#stringify_keys! References #10717 [Cheah Chu Yeow]Jeremy Kemper2008-01-061-4/+1
* Ruby 1.9: Module#local_constants can now just use constants(false). Closes #1...Jeremy Kemper2008-01-041-12/+21
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-033-0/+4
* Ruby 1.9 compat: special-case String access methods to not depend on #charsJeremy Kemper2008-01-031-48/+72
* Correct Hash#assert_valid_keys docs. Closes #10621 [Cheah Chu Yeow, blackanger]Jeremy Kemper2008-01-021-3/+4
* Changed the implementation of Enumerable#group_by to use a double array appro...David Heinemeier Hansson2007-12-311-2/+7
* Ruby 1.9 compat: introduce ActiveSupport::FrozenObjectError normalize TypeErr...Jeremy Kemper2007-12-291-0/+8
* Ruby 1.9 compat: introduce instance_variable_names. Closes #10630 [Frederick ...Jeremy Kemper2007-12-281-0/+4
* Ruby 1.9 compat: don't use obsolete ParseDateJeremy Kemper2007-12-271-4/+4
* Ruby 1.9 compat: dependencies uses Module#local_constant_names. References #1...Jeremy Kemper2007-12-221-0/+6
* Ruby 1.9: use enumerator for blockless Range#stepJeremy Kemper2007-12-211-6/+16
* Multibyte: String#chars returns self for Ruby 1.9Jeremy Kemper2007-12-211-32/+51
* Hash#symbolize_keys skips keys that can't be symbolized. Closes #10500.Jeremy Kemper2007-12-201-1/+1
* Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas...Jeremy Kemper2007-12-181-2/+1
* Docfix (closes #10369) [revans]David Heinemeier Hansson2007-12-171-1/+17
* Ruby 1.9 compat: 'a'.ord == 'a'[0]Jeremy Kemper2007-12-151-2/+7
* Ruby 1.9 compat: normalize date and time xmlschema to match Ruby's formatting...Jeremy Kemper2007-12-152-4/+11
* Ruby 1.9 compat: prefer builtin String#starts_ and ends_with? if available [c...Jeremy Kemper2007-12-154-8/+20
* Added that Array#to_param calls to_param on all it's elements (closes #10473)...David Heinemeier Hansson2007-12-141-2/+2
* Missed commit. References #10395.Jeremy Kemper2007-12-091-0/+14
* Move #to_query methods where they ought to belong. Closes #10395 [Chu Yeow]Jeremy Kemper2007-12-093-17/+17
* to_sentence returns self[0].to_s instead of just self[0] for arrays of length...Jeremy Kemper2007-12-091-1/+1
* Refactor of Hash#symbolize_keys! to use Hash#replace. Closes #10420 [ReinH]Rick Olson2007-12-081-7/+1
* Fix HashWithIndifferentAccess#to_options! so it doesn't clear the options has...Rick Olson2007-12-081-0/+1
* Fix incorrect superclass in documentation for alias_attribute. Closes #7171 [...Marcel Molina2007-12-051-1/+1
* Document that the delegate method can delegate to things other than just meth...Marcel Molina2007-12-051-0/+20
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Document Date conversions. Closes #10368 [chuyeow]Michael Koziarski2007-12-051-4/+34
* Enhance documentation for Active Support's Time Conversion functions. [rsanhe...Michael Koziarski2007-12-051-3/+46
* Fix potential extra space in Array#to_sentence. Closes #10327 [kamal]Michael Koziarski2007-12-021-6/+7
* Added Array#from and Array#to that behaves just from String#from and String#t...David Heinemeier Hansson2007-11-272-0/+30
* Fix that empty collections should be treated as empty arrays regardless of wh...David Heinemeier Hansson2007-11-251-13/+13
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-244-4/+4
* Change Time and DateTime #end_of_month to return last second of month instea...Geoff Buesing2007-11-242-2/+2
* Clarify Array#in_groups_of implementation, don't dup unless needed, only requ...Jeremy Kemper2007-11-171-7/+20
* Speedup String#blank? and remove some overspecified tests.Jeremy Kemper2007-11-141-8/+2
* Standardize on using hyphens rather than colons to separate option names from...Marcel Molina2007-11-061-2/+2
* Add documentation for Hash#diff. Closes #9306 [tarmo]Marcel Molina2007-11-061-0/+8
* Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...Michael Koziarski2007-11-053-4/+13
* Add new superclass_delegating_accessors. Similar to class inheritable attrib...Michael Koziarski2007-10-292-0/+41
* Hash#to_xml handles symbol values. Closes #9954.Jeremy Kemper2007-10-231-0/+5
* Hash#symbolize_keys behaves well with integer keys. Closes #9890.Jeremy Kemper2007-10-161-3/+3