Method: ActiveSupport::TimeWithZone#tomorrow?

Defined in:
lib/active_support/time_with_zone.rb

#tomorrow?Boolean Also known as: next_day?

Returns true if the current object’s time falls within the next day (tomorrow).

Returns:

  • (Boolean)


267
268
269
# File 'lib/active_support/time_with_zone.rb', line 267

def tomorrow?
  time.tomorrow?
end