aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/time
Commit message (Expand)AuthorAgeFilesLines
* 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
* Time, Date and DateTime #advance accept :weeks option. Closes #9866.Jeremy Kemper2007-10-131-1/+1
* Fix Time#years_ago and #years_since from leap days. Closes #9865.Jeremy Kemper2007-10-131-2/+2
* Time and DateTime#advance accept :hours, :minutes, and :seconds options. Clos...Jeremy Kemper2007-10-131-2/+4
* Refactor Time and Date#months_since and #months_ago to use #advance. Closes #...Jeremy Kemper2007-10-131-21/+4
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-1/+1
* Date/Time/DateTime Ruby 1.9 compatJeremy Kemper2007-09-271-1/+1
* Deprecation: remove deprecated :mday option from Time, Date, and DateTime#cha...Jeremy Kemper2007-09-181-5/+5
* Some 1.9 forward compatibilityJeremy Kemper2007-09-142-8/+12
* Fix Time#advance bug when trying to advance a year from leap day. Closes #86...Rick Olson2007-08-031-4/+2
* fix one line formatting bugMichael Koziarski2007-07-191-1/+1
* Added Date#change (like Time#change) [DHH]David Heinemeier Hansson2007-05-311-1/+1
* DateTime#to_time converts to Time unless out of range. Date#to_datetime and D...Jeremy Kemper2007-05-301-1/+2
* Date, Time, and DateTime support formatting blocks in addition to strftime st...Jeremy Kemper2007-05-251-9/+18
* Time#since overflows to DateTime. Introduce Time#to_datetime. Closes #7715.Jeremy Kemper2007-03-052-0/+7
* Out-of-range Time calculations transparently overflow to DateTime. Closes #7706.Jeremy Kemper2007-03-041-24/+44
* Ruby 1.8-cvs and 1.9 define a private Time#to_date that overrides Active Supp...Jeremy Kemper2007-02-011-3/+0
* Add Object#acts_like? and Time#acts_like_time? and Date#acts_like_date? to fa...Jamis Buck2007-01-151-0/+13
* Make 1.months and friends accurate by introducing a Duration class. #6835 [e...Michael Koziarski2007-01-151-0/+21
* Added Time#to_s(:time) which will just return H:M, like 17:44 [DHH]David Heinemeier Hansson2006-11-251-0/+1
* Fix end of dayDavid Heinemeier Hansson2006-11-141-1/+1
* Added Time#end_of_day to get 23:59:59 of that day [DHH]David Heinemeier Hansson2006-11-121-0/+5
* next_week respects DST changes. Closes #5617, closes #2353, closes #2509, ref...Jeremy Kemper2006-11-021-6/+7
* next_week respects DST changes. Closes #6483.Jeremy Kemper2006-10-241-1/+3
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-2/+1
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molin...Marcel Molina2006-04-291-2/+1
* Added Time#advance to do precise time time calculations for cases where a mon...David Heinemeier Hansson2006-03-161-0/+9
* Time#xmlschema is only available when you've required 'time'. Add a unit tes...Michael Koziarski2006-03-151-0/+1
* Added Time#beginning_of_quarter (closes #3607) [cohen.jeff@gmail.com]David Heinemeier Hansson2006-02-261-0/+6
* Added Time#end_of_month to accompany Time#beginning_of_month (closes #2514) [...David Heinemeier Hansson2005-10-261-0/+8
* Fixed that Time#change should also reset usec when also resetting minutes #24...David Heinemeier Hansson2005-10-131-1/+1
* Replace '%e' from long and short time formats as Windows does not support it....Marcel Molina2005-10-101-2/+2
* Add :rfc822 as an option for Time#to_s (to get rfc822-formatted times)Jamis Buck2005-10-031-4/+5
* Make Time#last_month work when invoked on the 31st of a month.Jamis Buck2005-08-311-6/+14
* Add Time.days_in_month, and make Time#next_month work when invoked on the 31s...Jamis Buck2005-08-311-5/+28
* Fixed that Time#midnight would have a non-zero usec on some platforms #1836Jamis Buck2005-07-311-2/+2
* Fixed Time#at_beginning_of_week returned the next Monday instead of the previ...David Heinemeier Hansson2005-06-161-1/+2
* Slight change to allow custom date/time conversions #1326 [Rick Olson]David Heinemeier Hansson2005-05-211-6/+7
* Fixed Time#last_year to go back in time, not forward #1278 [fabien@odilat.com]David Heinemeier Hansson2005-05-191-3/+3
* Fixed that Time.local(2005,12).months_since(1) would raise "ArgumentError: ar...David Heinemeier Hansson2005-05-191-1/+2
* Added year-based time calculationsDavid Heinemeier Hansson2005-02-241-1/+28
* Added Date::Conversions for getting dates in different convenient string repr...David Heinemeier Hansson2005-02-211-2/+4
* Added Time::Conversions for getting times in different convenient string repr...David Heinemeier Hansson2005-02-211-0/+32