Class: AWSCronParser::Describer::FieldDescribers::Month
- Defined in:
- lib/aws_cron_parser/describer/field_describers/month.rb
Overview
Describes month field
Constant Summary
Constants inherited from Base
Base::LIST_PATTERN, Base::RANGE_PATTERN, Base::STEP_PATTERN
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Methods included from Helpers
Constructor Details
This class inherits a constructor from AWSCronParser::Describer::FieldDescribers::Base
Instance Method Details
#describe ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/aws_cron_parser/describer/field_describers/month.rb', line 10 def describe return nil if wildcard? # Normalize abbreviations to numbers first @value = normalize_month_value(value) super end |