Enables the use of time calculations within Date itself
- advance
- ago
- at_beginning_of_day
- at_beginning_of_month
- at_beginning_of_quarter
- at_beginning_of_week
- at_beginning_of_year
- at_end_of_month
- at_end_of_quarter
- at_end_of_week
- at_end_of_year
- at_midnight
- beginning_of_day
- beginning_of_month
- beginning_of_quarter
- beginning_of_week
- beginning_of_year
- change
- end_of_day
- end_of_month
- end_of_quarter
- end_of_week
- end_of_year
- future?
- in
- midnight
- monday
- months_ago
- months_since
- next_month
- next_week
- next_year
- past?
- prev_month
- prev_year
- since
- today?
- tomorrow
- years_ago
- years_since
- yesterday
Provides precise Date calculations for years, months, and days. The options parameter takes a hash with any of these keys: :years, :months, :weeks, :days.
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 94
94: def advance(options)
95: options = options.dup
96: d = self
97: d = d >> options.delete(:years) * 12 if options[:years]
98: d = d >> options.delete(:months) if options[:months]
99: d = d + options.delete(:weeks) * 7 if options[:weeks]
100: d = d + options.delete(:days) if options[:days]
101: d
102: end
Converts Date to a Time (or DateTime if necessary) with the time portion set to the beginning of the day (0:00) and then subtracts the specified number of seconds
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 52
52: def ago(seconds)
53: to_time.since(-seconds)
54: end
Alias for beginning_of_day
Alias for beginning_of_month
Alias for beginning_of_quarter
Alias for beginning_of_week
Alias for beginning_of_year
Alias for end_of_month
Alias for end_of_quarter
Alias for end_of_week
Alias for end_of_year
Alias for beginning_of_day
Converts Date to a Time (or DateTime if necessary) with the time portion set to the beginning of the day (0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 64
64: def beginning_of_day
65: to_time
66: end
Returns a new ; DateTime objects will have time set to 0:00DateTime representing the start of the month (1st of the month; DateTime objects will have time set to 0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 193
193: def beginning_of_month
194: self.acts_like?(:time) ? change(:day => 1,:hour => 0, :min => 0, :sec => 0) : change(:day => 1)
195: end
Returns a new Date/DateTime representing the start of the quarter (1st of january, april, july, october; DateTime objects will have time set to 0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 206
206: def beginning_of_quarter
207: beginning_of_month.change(:month => [10, 7, 4, 1].detect { |m| m <= self.month })
208: end
Returns a new Date/DateTime representing the "start" of this week (i.e, Monday; DateTime objects will have time set to 0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 169
169: def beginning_of_week
170: days_to_monday = self.wday!=0 ? self.wday-1 : 6
171: result = self - days_to_monday
172: self.acts_like?(:time) ? result.midnight : result
173: end
Returns a new Date/DateTime representing the start of the year (1st of january; DateTime objects will have time set to 0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 218
218: def beginning_of_year
219: self.acts_like?(:time) ? change(:month => 1, :day => 1, :hour => 0, :min => 0, :sec => 0) : change(:month => 1, :day => 1)
220: end
Returns a new Date where one or more of the elements have been changed according to the options parameter.
Examples:
Date.new(2007, 5, 12).change(:day => 1) # => Date.new(2007, 5, 1) Date.new(2007, 5, 12).change(:year => 2005, :month => 1) # => Date.new(2005, 1, 12)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 110
110: def change(options)
111: ::Date.new(
112: options[:year] || self.year,
113: options[:month] || self.month,
114: options[:day] || self.day
115: )
116: end
Converts Date to a Time (or DateTime if necessary) with the time portion set to the end of the day (23:59:59)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 72
72: def end_of_day
73: to_time.end_of_day
74: end
Returns a new Date/DateTime representing the end of the month (last day of the month; DateTime objects will have time set to 0:00)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 199
199: def end_of_month
200: last_day = ::Time.days_in_month( self.month, self.year )
201: self.acts_like?(:time) ? change(:day => last_day, :hour => 23, :min => 59, :sec => 59) : change(:day => last_day)
202: end
Returns a new Date/DateTime representing the end of the quarter (last day of march, june, september, december; DateTime objects will have time set to 23:59:59)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 212
212: def end_of_quarter
213: beginning_of_month.change(:month => [3, 6, 9, 12].detect { |m| m >= self.month }).end_of_month
214: end
Returns a new Date/DateTime representing the end of this week (Sunday, DateTime objects will have time set to 23:59:59)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 178
178: def end_of_week
179: days_to_sunday = self.wday!=0 ? 7-self.wday : 0
180: result = self + days_to_sunday.days
181: self.acts_like?(:time) ? result.end_of_day : result
182: end
Returns a new Time representing the end of the year (31st of december; DateTime objects will have time set to 23:59:59)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 224
224: def end_of_year
225: self.acts_like?(:time) ? change(:month => 12,:day => 31,:hour => 23, :min => 59, :sec => 59) : change(:month => 12, :day => 31)
226: end
Tells whether the Date object‘s date lies in the future
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 46
46: def future?
47: self > ::Date.current
48: end
Alias for since
Alias for beginning_of_day
Alias for beginning_of_week
Returns a new Date/DateTime representing the time a number of specified months ago
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 119
119: def months_ago(months)
120: advance(:months => -months)
121: end
Returns a new Date/DateTime representing the time a number of specified months in the future
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 124
124: def months_since(months)
125: advance(:months => months)
126: end
Short-hand for months_since(1)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 164
164: def next_month
165: months_since(1)
166: end
Returns a new Date/DateTime representing the start of the given day in next week (default is Monday).
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 186
186: def next_week(day = :monday)
187: days_into_week = { :monday => 0, :tuesday => 1, :wednesday => 2, :thursday => 3, :friday => 4, :saturday => 5, :sunday => 6}
188: result = (self + 7).beginning_of_week + days_into_week[day]
189: self.acts_like?(:time) ? result.change(:hour => 0) : result
190: end
Short-hand for years_since(1)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 149
149: def next_year
150: years_since(1)
151: end
Tells whether the Date object‘s date lies in the past
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 36
36: def past?
37: self < ::Date.current
38: end
Short-hand for months_ago(1)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 159
159: def prev_month
160: months_ago(1)
161: end
Short-hand for years_ago(1)
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 144
144: def prev_year
145: years_ago(1)
146: end
Converts Date to a Time (or DateTime if necessary) with the time portion set to the beginning of the day (0:00) and then adds the specified number of seconds
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 58
58: def since(seconds)
59: to_time.since(seconds)
60: end
Tells whether the Date object‘s date is today
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 41
41: def today?
42: self.to_date == ::Date.current # we need the to_date because of DateTime
43: end
Convenience method which returns a new Date/DateTime representing the time 1 day since the instance time
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 235
235: def tomorrow
236: self + 1
237: end
Returns a new Date/DateTime representing the time a number of specified years ago
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 129
129: def years_ago(years)
130: advance(:years => -years)
131: end
Returns a new Date/DateTime representing the time a number of specified years in the future
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 134
134: def years_since(years)
135: advance(:years => years)
136: end
Convenience method which returns a new Date/DateTime representing the time 1 day ago
[ show source ]
# File activesupport/lib/active_support/core_ext/date/calculations.rb, line 230
230: def yesterday
231: self - 1
232: end