# Configure office working hours
WorkingHours::Config.working_hours = {
  :mon => {'08:00' => '12:00', '13:00' => '17:00'},
  :tue => {'08:00' => '12:00', '13:00' => '17:00'},
  :wed => {'08:00' => '12:00', '13:00' => '17:00'},
  :thu => {'08:00' => '12:00', '13:00' => '17:00'},
  :fri => {'08:00' => '12:00', '13:00' => '17:00'}
}

# Configure timezone (uses activesupport, defaults to UTC)
WorkingHours::Config.time_zone = 'Eastern Time (US & Canada)'

# Configure holidays
WorkingHours::Config.holidays = [Date.new(2015, 12, 25), Date.new(2015, 12, 28), Date.new(2016, 01, 01)]