on_weekend?()
Returns true if the date/time falls on a Saturday or Sunday.
# File activesupport/lib/active_support/core_ext/date_and_time/calculations.rb, line 57 def on_weekend? WEEKEND_DAYS.include?(wday) end