module DateAndTime::Calculations

def on_weekend?

Returns true if the date/time falls on a Saturday or Sunday.
def on_weekend?
  WEEKEND_DAYS.include?(wday)
end