aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Expand)AuthorAgeFilesLines
* Adding TimeZone#at and DateTime#to_fGeoff Buesing2008-03-176-3/+45
* TimeWithZone responds to Ruby 1.9 weekday-named query methodsGeoff Buesing2008-03-173-0/+15
* TimeWithZone caches TZInfo::TimezonePeriod used for time conversion so that i...Geoff Buesing2008-03-174-16/+55
* Applied the faster squish version (closes #11123) [jordi]David Heinemeier Hansson2008-03-131-2/+4
* Fixed that BufferedLogger should create its own directory if one doesnt alrea...David Heinemeier Hansson2008-03-133-0/+13
* Fix Numeric time tests broken by DST change by anchoring them to fixed times ...Geoff Buesing2008-03-113-4/+6
* Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZoneGeoff Buesing2008-03-114-49/+17
* TimeZone #local and #now correctly enforce DST rulesGeoff Buesing2008-03-113-16/+83
* TimeWithZone instances correctly enforce DST rules. Adding TimeZone#period_fo...Geoff Buesing2008-03-114-17/+59
* test_time_with_datetime_fallback expects DateTime.local_offset instead of Dat...Geoff Buesing2008-03-102-2/+4
* Fixed typos in ActiveSupport::Callbacks documentation. Closes #11254Pratik Naik2008-03-071-3/+3
* 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