module DateAndTime::Calculations

def on_weekday?

Returns true if the date/time does not fall on a Saturday or Sunday.
def on_weekday?
  !WEEKEND_DAYS.include?(wday)
end