class Date

Public Instance Methods

gt_holiday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 40
def gt_holiday
  RussianProductionCalendar.gt_holiday(self)
end
gt_workday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 24
def gt_workday
  RussianProductionCalendar.gt_workday(self)
end
gte_holiday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 32
def gte_holiday
  RussianProductionCalendar.gte_holiday(self)
end
gte_workday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 16
def gte_workday
  RussianProductionCalendar.gte_workday(self)
end
holiday?() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 8
def holiday?
  RussianProductionCalendar.holiday?(self)
end
lt_holiday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 44
def lt_holiday
  RussianProductionCalendar.lt_holiday(self)
end
lt_workday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 28
def lt_workday
  RussianProductionCalendar.lt_workday(self)
end
lte_holiday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 36
def lte_holiday
  RussianProductionCalendar.lte_holiday(self)
end
lte_workday() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 20
def lte_workday
  RussianProductionCalendar.lte_workday(self)
end
workday?() click to toggle source
# File lib/russian_production_calendar/ext/date.rb, line 12
def workday?
  RussianProductionCalendar.workday?(self)
end