aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Expand)AuthorAgeFilesLines
* Docs for ActiveSupport::Callbacks. Closes #11254 [ernesto.jimenez]Pratik Naik2008-03-051-0/+120
* Adding TimeWithZone #marshal_dump and #marshal_loadGeoff Buesing2008-03-033-0/+18
* Add OrderedHash#to_hash. Closes #11266 [josh]Michael Koziarski2008-03-033-0/+9
* Fix Hash#from_xml with Type records. Closes #9242 [Juanjo Bazan, Isaac Feliu]Jeremy Kemper2008-02-271-2/+3
* Changelog attribution for #9312Jeremy Kemper2008-02-271-1/+1
* Adding Time#end_of_day, _quarter, _week, and _year. Closes #9312.Jeremy Kemper2008-02-275-0/+99
* Add #clear to mem_cache_store, flushes all cachesJeremy Kemper2008-02-211-0/+4
* Pass array of addressesJeremy Kemper2008-02-171-1/+1
* Adding TimeWithZone#between?Geoff Buesing2008-02-173-1/+12
* Time.=== returns true for TimeWithZone instancesGeoff Buesing2008-02-163-0/+13
* TimeWithZone #+ and #- behave consistently with numeric arguments regardless ...Geoff Buesing2008-02-163-4/+37
* Add String#squish and String#squish! to remove consecutive chunks of whitespa...Michael Koziarski2008-02-164-0/+45
* Serialize BigDecimals as Floats when using to_yaml. Closes #8746 [ernesto.jim...Michael Koziarski2008-02-153-0/+34
* Adding TimeWithZone #to_yaml, #to_datetime, #eql? and method aliases for duck...Geoff Buesing2008-02-103-0/+38
* TimeWithZone #in_time_zone returns +self+ if zone argument is the same as #ti...Geoff Buesing2008-02-103-0/+7
* Adding TimeWithZone #to_a, #to_f, #to_i, #httpdate, #rfc2822Geoff Buesing2008-02-103-1/+48
* Pruning unneeded TimeWithZone#change_time_zone_to_currentGeoff Buesing2008-02-102-5/+2
* Time#zone=, #in_time_zone and #change_time_zone accept a DurationGeoff Buesing2008-02-103-1/+28
* Time#in_time_zone handles Time.local instances correctlyGeoff Buesing2008-02-103-4/+21
* Pruning unneeded Time#change_time_zone_to_current. Enhanced docs for #change_...Geoff Buesing2008-02-103-28/+8
* TimeZone#new renamed #local, so that new TimeWithZone instances can be create...Geoff Buesing2008-02-103-5/+7
* Fix that the options hash can be nil when coming from fragmentsDavid Heinemeier Hansson2008-02-071-2/+2
* ActiveSupport::Base64.encode64s since Base64 is deprecatedJeremy Kemper2008-02-075-11/+13
* Added Base64.encode64s to encode values in base64 without the newlines. This ...David Heinemeier Hansson2008-02-074-0/+31
* Remove :nodoc: entries around the ActiveSupport test/unit assertions. Closes ...Rick Olson2008-02-072-3/+7
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-065-1/+28
* Ruby 1.9 compat: declare utf-8 file encodingJeremy Kemper2008-02-024-0/+4
* Slight camelize speedup [Pratik Naik]Jeremy Kemper2008-02-021-1/+1
* Simplified, faster implementation of Benchmark.realtime [Alexander Dymo]Michael Koziarski2008-02-021-0/+12
* MemCacheStore#write and #delete return a boolean indicating whether the opera...Jeremy Kemper2008-02-011-5/+16
* Bundled memcache client consistently returns server responses and checks for ...Jeremy Kemper2008-02-011-8/+25
* MemCacheStore#write uses add by default and set if :force => trueJeremy Kemper2008-02-011-2/+5
* Add a handful of cache store testsJeremy Kemper2008-02-012-0/+28
* cache.fetch(key, :force => true) to force a cache missJeremy Kemper2008-02-012-4/+7
* Remove unnofficial 'PST' timezoneRick Olson2008-01-291-2/+1
* Support retrieving TimeZones with a Duration. TimeZone[-28800] == TimeZone[-...Rick Olson2008-01-293-2/+13
* TimeWithZone#- added, so that #- can handle a Time or TimeWithZone argument ...Geoff Buesing2008-01-263-0/+9
* with_timezone test helper renamed with_env_tz, to distinguish between setting...Geoff Buesing2008-01-264-29/+31
* Time#- coerces TimeWithZone argument to a Time instance so that difference in...Geoff Buesing2008-01-254-0/+27
* Adding UTC zone to TimeZone; TimeWithZone no longer has to fake UTC zone with...Geoff Buesing2008-01-256-21/+27
* Time.get_zone refactored to private method, given that the encapsulated logic...Geoff Buesing2008-01-252-6/+14
* Time.zone uses thread-local variable for thread safety. Adding Time.use_zone,...Geoff Buesing2008-01-253-31/+53
* TimeZone#to_s uses UTC rather than GMT; reapplying change that was undone in ...Geoff Buesing2008-01-253-2/+4
* Time.days_in_month defaults to current year if no year is supplied as argumen...Geoff Buesing2008-01-253-13/+22
* Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=...Geoff Buesing2008-01-237-4/+82
* TimeZone#now returns an ActiveSupport::TimeWithZoneGeoff Buesing2008-01-233-7/+17
* Time #in_current_time_zone and #change_time_zone_to_current return self when ...Geoff Buesing2008-01-233-6/+8
* Remove unneeded #to_datetime_default_s alias for DateTime#to_s, given that we...Geoff Buesing2008-01-232-1/+2
* Enumerable#group_by uses ActiveSupport::OrderedHashJeremy Kemper2008-01-232-16/+3
* Refactor Time and DateTime #to_formatted_s: use ternary instead of nested if/...Geoff Buesing2008-01-233-18/+6