aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Expand)AuthorAgeFilesLines
...
* Adding TimeZone#at and DateTime#to_fGeoff Buesing2008-03-171-0/+6
* Applied the faster squish version (closes #11123) [jordi]David Heinemeier Hansson2008-03-131-2/+4
* Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZoneGeoff Buesing2008-03-111-13/+0
* Fix Hash#from_xml with Type records. Closes #9242 [Juanjo Bazan, Isaac Feliu]Jeremy Kemper2008-02-271-2/+3
* Adding Time#end_of_day, _quarter, _week, and _year. Closes #9312.Jeremy Kemper2008-02-272-0/+39
* Time.=== returns true for TimeWithZone instancesGeoff Buesing2008-02-161-0/+5
* Add String#squish and String#squish! to remove consecutive chunks of whitespa...Michael Koziarski2008-02-162-0/+26
* Serialize BigDecimals as Floats when using to_yaml. Closes #8746 [ernesto.jim...Michael Koziarski2008-02-151-0/+23
* Time#zone=, #in_time_zone and #change_time_zone accept a DurationGeoff Buesing2008-02-101-1/+2
* Time#in_time_zone handles Time.local instances correctlyGeoff Buesing2008-02-101-4/+2
* Pruning unneeded Time#change_time_zone_to_current. Enhanced docs for #change_...Geoff Buesing2008-02-101-7/+6
* ActiveSupport::Base64.encode64s since Base64 is deprecatedJeremy Kemper2008-02-073-9/+6
* Added Base64.encode64s to encode values in base64 without the newlines. This ...David Heinemeier Hansson2008-02-072-0/+20
* Remove :nodoc: entries around the ActiveSupport test/unit assertions. Closes ...Rick Olson2008-02-071-3/+5
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-061-1/+3
* Simplified, faster implementation of Benchmark.realtime [Alexander Dymo]Michael Koziarski2008-02-021-0/+12
* Time#- coerces TimeWithZone argument to a Time instance so that difference in...Geoff Buesing2008-01-251-0/+11
* Time.get_zone refactored to private method, given that the encapsulated logic...Geoff Buesing2008-01-251-6/+12
* Time.zone uses thread-local variable for thread safety. Adding Time.use_zone,...Geoff Buesing2008-01-251-7/+13
* Time.days_in_month defaults to current year if no year is supplied as argumen...Geoff Buesing2008-01-251-12/+7
* Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=...Geoff Buesing2008-01-232-0/+29
* Time #in_current_time_zone and #change_time_zone_to_current return self when ...Geoff Buesing2008-01-231-2/+2
* Remove unneeded #to_datetime_default_s alias for DateTime#to_s, given that we...Geoff Buesing2008-01-231-1/+0
* Enumerable#group_by uses ActiveSupport::OrderedHashJeremy Kemper2008-01-231-15/+2
* Refactor Time and DateTime #to_formatted_s: use ternary instead of nested if/...Geoff Buesing2008-01-232-18/+4
* Adding Time and DateTime #formatted_offset, for outputting +HH:MM utc offset ...Geoff Buesing2008-01-232-0/+17
* 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