module MyCompany::Schedule

Constants

VERSION

Public Instance Methods

holiday?(date = Date.today) click to toggle source
Calls superclass method
# File lib/my_company/schedule.rb, line 20
def holiday?(date = Date.today)
  super || HOLIDAYS.include?(date)
end