Method: Date.tomorrow

Defined in:
activesupport/lib/active_support/core_ext/date/calculations.rb

.tomorrowObject

Returns a new Date representing the date 1 day after today (i.e. tomorrow’s date).



43
44
45
# File 'activesupport/lib/active_support/core_ext/date/calculations.rb', line 43

def tomorrow
  ::Date.current.tomorrow
end