class Cronex::DayOfMonthDescription

Public Instance Methods

between_description_format(expression) click to toggle source
# File lib/cronex/description/day_of_month.rb, line 11
def between_description_format(expression)
  ', ' + resources.get('between_days_of_the_month')
end
description_format(expression) click to toggle source
# File lib/cronex/description/day_of_month.rb, line 15
def description_format(expression)
  ', ' + resources.get('on_day_of_the_month')
end
interval_description_format(expression) click to toggle source
# File lib/cronex/description/day_of_month.rb, line 7
def interval_description_format(expression)
  ', ' + resources.get('every_x') + ' ' + plural(expression, resources.get('day'), resources.get('days'))
end
single_item_description(expression) click to toggle source
# File lib/cronex/description/day_of_month.rb, line 3
def single_item_description(expression)
  expression == 'L' ? resources.get('last_day') : expression
end
starting_description_format(expression) click to toggle source
# File lib/cronex/description/day_of_month.rb, line 19
def starting_description_format(expression)
  resources.get('starting') + ' ' + resources.get('on_day_of_the_month')
end