Ticket #10375: document_date_calc_class_methods.2.diff
| File document_date_calc_class_methods.2.diff, 0.7 kB (added by kampers, 5 months ago) |
|---|
-
activesupport/lib/active_support/core_ext/date/calculations.rb
old new 16 16 end 17 17 18 18 module ClassMethods 19 # Returns a new Date representing the date 1 day ago (i.e. yesterday's date). 19 20 def yesterday 20 21 ::Date.today.yesterday 21 22 end 22 23 24 # Returns a new Date representing the date 1 day after today (i.e. tomorrow's date). 23 25 def tomorrow 24 26 ::Date.today.tomorrow 25 27 end