class ReeDate::IsWeekend

def call(date = nil)

def call(date = nil)
  date = date || today
  WEEKEND_DAYS.include?(date.wday)
end