1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added some examples for the time calculations

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@736 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-02-21 15:07:25 +00:00
parent 6e84d82ce9
commit a0455ecb43

View file

@ -1,4 +1,13 @@
* Added Time::Calculations to ask for things like Time.now.tomorrow, Time.now.yesterday, Time.now.months_ago(4) #580 [DP|Flurin]
* Added Time::Calculations to ask for things like Time.now.tomorrow, Time.now.yesterday, Time.now.months_ago(4) #580 [DP|Flurin]. Examples:
"Later today" => now.in(3.hours),
"Tomorrow morning" => now.tomorrow.change(:hour => 9),
"Tomorrow afternoon" => now.tomorrow.change(:hour => 14),
"In a couple of days" => now.tomorrow.tomorrow.change(:hour => 9),
"Next monday" => now.next_week.change(:hour => 9),
"In a month" => now.next_month.change(:hour => 9),
"In 6 months" => now.months_since(6).change(:hour => 9),
"In a year" => now.in(1.year).change(:hour => 9)
* Upgraded to breakpoint 92 which fixes: