aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into cherryJeremy Kemper2009-04-201-11/+3
|\
| * Time.local instances: Adding 24.hours across the DST boundary adds 24 hours i...Michael Curtis2009-03-291-11/+3
* | JRuby doesn't have UnboundMethod#nameJeremy Kemper2009-03-291-1/+1
* | Convert Time conversions extension module to class reopenJeremy Kemper2009-03-282-83/+79
* | Explicit dependency on Date calculations extensionsJeremy Kemper2009-03-281-0/+1
* | Tease out Object#acts_like? behaviorsJeremy Kemper2009-03-282-13/+8
* | Convert Time extension modules to class reopensJeremy Kemper2009-03-262-379/+352
* | Extract time fixes into separate extensionsJeremy Kemper2009-03-242-0/+32
* | Move Numeric#to_utc_offset_s to TimeZone.seconds_to_utc_offsetJeremy Kemper2009-03-231-1/+1
|/
* Time#to_s(:rfc822) uses #formatted_offset instead of unreliable and non-stand...Zachary Zolton2009-02-091-1/+1
* Explicitly require AS::DurationJeremy Kemper2008-11-171-0/+2
* Time#advance recognizes fractional days and weeks [#970 state:resolved]Tom Lea2008-10-131-0/+10
* Fixed Time#end_of_quarter to not blow up on May 31st [#313 state:resolved]Carlos Brando2008-09-191-1/+1
* Introduce convenience methods past?, today? and future? for Date and Time cla...Clemens Kofler2008-09-141-10/+25
* Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...Jeremy Kemper2008-08-311-1/+1
* Merge docrails changesPratik Naik2008-07-281-0/+1
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Merge docrails.Pratik Naik2008-05-252-13/+13
* Adding documentation for time zone featuresgbuesing2008-05-181-8/+19
* Improve documentation coverage and markupXavier Noria2008-05-021-4/+6
* Duration #since and #ago with no argument (e.g., 5.days.ago) return TimeWithZ...gbuesing2008-04-201-0/+5
* Time#since behaves correctly when passed a Duration. Closes #11527 [kemiller]gbuesing2008-04-121-5/+8
* Improve documentation.Pratik Naik2008-04-052-30/+14
* Time #yesterday and #tomorrow behave correctly crossing DST boundary. Closes ...Geoff Buesing2008-04-041-2/+2
* Time.zone= accepts TZInfo::Timezone instances and Olson identifiers; wraps re...Geoff Buesing2008-03-281-2/+9
* Improve documentation.Pratik Naik2008-03-261-5/+5
* Time, DateTime and TimeWithZone #in_time_zone defaults to Time.zone. Removing...Geoff Buesing2008-03-171-19/+16
* Removing unneeded #change_time_zone method from Time, DateTime and TimeWithZoneGeoff Buesing2008-03-111-13/+0
* Adding Time#end_of_day, _quarter, _week, and _year. Closes #9312.Jeremy Kemper2008-02-271-0/+19
* Time.=== returns true for TimeWithZone instancesGeoff Buesing2008-02-161-0/+5
* 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
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-061-1/+3
* 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-231-0/+17
* Time #in_current_time_zone and #change_time_zone_to_current return self when ...Geoff Buesing2008-01-231-2/+2
* Refactor Time and DateTime #to_formatted_s: use ternary instead of nested if/...Geoff Buesing2008-01-231-9/+2
* Adding Time and DateTime #formatted_offset, for outputting +HH:MM utc offset ...Geoff Buesing2008-01-231-0/+8
* Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a Tim...Geoff Buesing2008-01-231-0/+68
* Simplify to_formatted_s docs. Closes #10747 [Jeremy Kemper]Jeremy Kemper2008-01-091-24/+12
* Document date and time to_formatted_s. Closes #10747 [leethal]Jeremy Kemper2008-01-091-2/+22
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-031-0/+1
* Enhance documentation for Active Support's Time Conversion functions. [rsanhe...Michael Koziarski2007-12-051-3/+46
* Honor Ruby's default calendar reform setting when creating DateTime objects v...Geoff Buesing2007-11-242-2/+2
* Change Time and DateTime #end_of_month to return last second of month instea...Geoff Buesing2007-11-241-1/+1
* Cater for DST changes when converting Times to DateTimes. Closes #10068 [gbu...Michael Koziarski2007-11-051-1/+1