module Holidays::DateCalculatorFactory

Public Class Methods

day_of_month_calculator() click to toggle source
# File lib/holidays/date_calculator_factory.rb, line 30
def day_of_month_calculator
  DateCalculator::DayOfMonth.new
end
weekend_modifier() click to toggle source
# File lib/holidays/date_calculator_factory.rb, line 26
def weekend_modifier
  DateCalculator::WeekendModifier.new
end