aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/time_with_zone_test.rb
Commit message (Expand)AuthorAgeFilesLines
* TimeWithZone#freeze: preload instance variables so that we can actually freezegbuesing2008-10-191-0/+13
* TimeWithZone #wday, #yday and #to_date avoid trip through #method_missinggbuesing2008-09-141-1/+3
* Add thorough tests for Time-object #past?, #future? and #today. Fix TimeWithZ...gbuesing2008-09-141-10/+49
* Introduce convenience methods past?, today? and future? for Date and Time cla...Clemens Kofler2008-09-141-9/+22
* Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, beca...gbuesing2008-07-141-0/+6
* TimeWithZone: when crossing DST boundary, treat Durations of days, months or ...gbuesing2008-06-291-0/+168
* Wrap date part value method tests inside a uses mocha block.Joshua Peek2008-06-071-16/+18
* Namespace Inflector, Dependencies, OrderedOptions, and TimeZone under ActiveS...Joshua Peek2008-06-031-120/+120
* TimeWithZone #+ and #- : ensure overflow to DateTime with Numeric arggbuesing2008-05-181-0/+7
* 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-1/+9
* Duration #since and #ago with no argument (e.g., 5.days.ago) return TimeWithZ...gbuesing2008-04-201-0/+24
* TimeWithZone respects config.active_support.use_standard_json_time_formatgbuesing2008-04-121-0/+7
* TimeWithZone: Adding tests for dst and leap day edge cases when advancing timeGeoff Buesing2008-04-021-0/+35
* TimeWithZone#method_missing: send to utc to advance with dst correctness, oth...Geoff Buesing2008-04-021-0/+63
* Removing unnecessary uses_tzinfo helper from tests, given that TZInfo is now ...Geoff Buesing2008-03-301-456/+453
* Ensure threads finish running for time zone thread safety test.Josh Peek2008-03-291-2/+4
* config.time_zone and TimeWithZone#marshal_load accept tzinfo/Olson identifiersGeoff Buesing2008-03-281-0/+11
* Time.zone= accepts TZInfo::Timezone instances and Olson identifiers; wraps re...Geoff Buesing2008-03-281-0/+28
* TimeWithZone time conversions don't need to be wrapped in TimeOrDateTime, bec...Geoff Buesing2008-03-281-0/+12
* TimeWithZone#usec returns 0 instead of error when DateTime is wrappedGeoff Buesing2008-03-281-0/+7
* Ensure that TimeWithZone#to_yaml works when passed a YAML::Emitter. [rick]Rick Olson2008-03-231-0/+6
* Ensure correct TimeWithZone#to_dateGeoff Buesing2008-03-221-0/+13
* Make TimeWithZone work with tzinfo 0.2.x: use TZInfo::Timezone#zone_identifie...Geoff Buesing2008-03-211-80/+138
* Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing...Geoff Buesing2008-03-171-25/+25
* TimeWithZone responds to Ruby 1.9 weekday-named query methodsGeoff Buesing2008-03-171-0/+7
* TimeWithZone caches TZInfo::TimezonePeriod used for time conversion so that i...Geoff Buesing2008-03-171-0/+25
* Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZoneGeoff Buesing2008-03-111-31/+15
* TimeWithZone instances correctly enforce DST rules. Adding TimeZone#period_fo...Geoff Buesing2008-03-111-3/+40
* Adding TimeWithZone #marshal_dump and #marshal_loadGeoff Buesing2008-03-031-0/+8
* Adding TimeWithZone#between?Geoff Buesing2008-02-171-0/+5
* TimeWithZone #+ and #- behave consistently with numeric arguments regardless ...Geoff Buesing2008-02-161-2/+20
* Adding TimeWithZone #to_yaml, #to_datetime, #eql? and method aliases for duck...Geoff Buesing2008-02-101-0/+13
* TimeWithZone #in_time_zone returns +self+ if zone argument is the same as #ti...Geoff Buesing2008-02-101-0/+4
* Adding TimeWithZone #to_a, #to_f, #to_i, #httpdate, #rfc2822Geoff Buesing2008-02-101-0/+24
* Time#zone=, #in_time_zone and #change_time_zone accept a DurationGeoff Buesing2008-02-101-0/+24
* Time#in_time_zone handles Time.local instances correctlyGeoff Buesing2008-02-101-0/+17
* Pruning unneeded Time#change_time_zone_to_current. Enhanced docs for #change_...Geoff Buesing2008-02-101-21/+0
* TimeWithZone#- added, so that #- can handle a Time or TimeWithZone argument ...Geoff Buesing2008-01-261-0/+1
* Time#- coerces TimeWithZone argument to a Time instance so that difference in...Geoff Buesing2008-01-251-0/+10
* Adding UTC zone to TimeZone; TimeWithZone no longer has to fake UTC zone with...Geoff Buesing2008-01-251-6/+10
* Time.zone uses thread-local variable for thread safety. Adding Time.use_zone,...Geoff Buesing2008-01-251-24/+38
* Adding Time and DateTime #compare_with_coercion, which layers behavior on #<=...Geoff Buesing2008-01-231-3/+15
* Time #in_current_time_zone and #change_time_zone_to_current return self when ...Geoff Buesing2008-01-231-4/+4
* Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a Tim...Geoff Buesing2008-01-231-0/+212