aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/time_with_zone.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Merge with docrails.Pratik Naik2008-07-161-1/+13
* Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, beca...gbuesing2008-07-141-1/+1
* TimeWithZone#advance: treat :weeks option as variable-lengthgbuesing2008-06-291-2/+2
* TimeWithZone: when crossing DST boundary, treat Durations of days, months or ...gbuesing2008-06-291-12/+33
* Ruby 1.8.7 compat: TimeWithZone# and Chars#respond_to? pass along the include...Jeremy Kemper2008-05-311-4/+4
* Merge docrails.Pratik Naik2008-05-251-17/+17
* Adding documentation for time zone featuresgbuesing2008-05-181-1/+28
* TimeWithZone #+ and #- : ensure overflow to DateTime with Numeric arggbuesing2008-05-181-2/+2
* Include time zone offset in TimeWithZone#to_jsonDaniel Morrison2008-05-131-1/+1
* TimeWithZone: date part getter methods (#year #mon #day etc) are defined on c...gbuesing2008-05-081-0/+8
* Improve documentation coverage and markupXavier Noria2008-05-021-6/+7
* Refactor TimeWithZone: don't send #since, #ago, #+, #-, #advance through meth...gbuesing2008-04-121-9/+18
* TimeWithZone respects config.active_support.use_standard_json_time_formatgbuesing2008-04-121-1/+5
* TimeWithZone#method_missing: send to utc to advance with dst correctness, oth...Geoff Buesing2008-04-021-18/+7
* Bundling abbreviated version of TZInfo gem 0.3.8: only the classes and zone d...Geoff Buesing2008-03-301-0/+1
* config.time_zone and TimeWithZone#marshal_load accept tzinfo/Olson identifiersGeoff Buesing2008-03-281-1/+1
* TimeWithZone time conversions don't need to be wrapped in TimeOrDateTime, bec...Geoff Buesing2008-03-281-12/+2
* TimeWithZone#usec returns 0 instead of error when DateTime is wrappedGeoff Buesing2008-03-281-1/+5
* Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. [rick]Rick Olson2008-03-231-1/+5
* Ensure correct TimeWithZone#to_dateGeoff Buesing2008-03-221-1/+1
* Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifie...Geoff Buesing2008-03-211-1/+1
* Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing...Geoff Buesing2008-03-171-7/+2
* Adding TimeZone#parseGeoff Buesing2008-03-171-7/+16
* Adding TimeZone#at and DateTime#to_fGeoff Buesing2008-03-171-1/+1
* TimeWithZone responds to Ruby 1.9 weekday-named query methodsGeoff Buesing2008-03-171-0/+6
* TimeWithZone caches TZInfo::TimezonePeriod used for time conversion so that i...Geoff Buesing2008-03-171-8/+26
* Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZoneGeoff Buesing2008-03-111-5/+0
* TimeWithZone instances correctly enforce DST rules. Adding TimeZone#period_fo...Geoff Buesing2008-03-111-14/+12
* Adding TimeWithZone #marshal_dump and #marshal_loadGeoff Buesing2008-03-031-0/+8
* Adding TimeWithZone#between?Geoff Buesing2008-02-171-1/+5
* TimeWithZone #+ and #- behave consistently with numeric arguments regardless ...Geoff Buesing2008-02-161-2/+15
* Adding TimeWithZone #to_yaml, #to_datetime, #eql? and method aliases for duck...Geoff Buesing2008-02-101-0/+23
* TimeWithZone #in_time_zone returns +self+ if zone argument is the same as #ti...Geoff Buesing2008-02-101-0/+1
* Adding TimeWithZone #to_a, #to_f, #to_i, #httpdate, #rfc2822Geoff Buesing2008-02-101-1/+22
* Pruning unneeded TimeWithZone#change_time_zone_to_currentGeoff Buesing2008-02-101-5/+0
* TimeWithZone#- added, so that #- can handle a Time or TimeWithZone argument ...Geoff Buesing2008-01-261-0/+6
* Adding UTC zone to TimeZone; TimeWithZone no longer has to fake UTC zone with...Geoff Buesing2008-01-251-8/+7
* Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=...Geoff Buesing2008-01-231-1/+0
* Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a Tim...Geoff Buesing2008-01-231-0/+156