Class: CronSpec::WildcardCronValue
- Inherits:
-
CronValueBase
- Object
- CronValueBase
- CronSpec::WildcardCronValue
- Defined in:
- lib/cron-spec/wildcard_cron_value.rb
Instance Attribute Summary
Attributes inherited from CronValueBase
Instance Method Summary collapse
-
#initialize(lower_limit, upper_limit) ⇒ WildcardCronValue
constructor
A new instance of WildcardCronValue.
- #is_effective?(value) ⇒ Boolean
Methods inherited from CronValueBase
Constructor Details
#initialize(lower_limit, upper_limit) ⇒ WildcardCronValue
Returns a new instance of WildcardCronValue.
5 6 7 |
# File 'lib/cron-spec/wildcard_cron_value.rb', line 5 def initialize(lower_limit, upper_limit) super(lower_limit, upper_limit) end |
Instance Method Details
#is_effective?(value) ⇒ Boolean
9 10 11 |
# File 'lib/cron-spec/wildcard_cron_value.rb', line 9 def is_effective?(value) true end |