Class: IceCube::Validations::MonthlyInterval::Validation
- Inherits:
-
Object
- Object
- IceCube::Validations::MonthlyInterval::Validation
- Defined in:
- lib/ice_cube/validations/monthly_interval.rb
Instance Attribute Summary collapse
-
#interval ⇒ Object
readonly
Returns the value of attribute interval.
Instance Method Summary collapse
- #build_hash(builder) ⇒ Object
- #build_ical(builder) ⇒ Object
- #build_s(builder) ⇒ Object
- #dst_adjust? ⇒ Boolean
-
#initialize(interval) ⇒ Validation
constructor
A new instance of Validation.
- #type ⇒ Object
- #validate(step_time, start_time) ⇒ Object
Constructor Details
#initialize(interval) ⇒ Validation
Returns a new instance of Validation.
16 17 18 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 16 def initialize(interval) @interval = interval end |
Instance Attribute Details
#interval ⇒ Object (readonly)
Returns the value of attribute interval.
14 15 16 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 14 def interval @interval end |
Instance Method Details
#build_hash(builder) ⇒ Object
40 41 42 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 40 def build_hash(builder) builder[:interval] = interval end |
#build_ical(builder) ⇒ Object
44 45 46 47 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 44 def build_ical(builder) builder["FREQ"] << "MONTHLY" builder["INTERVAL"] << interval unless interval == 1 end |
#build_s(builder) ⇒ Object
36 37 38 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 36 def build_s(builder) builder.base = IceCube::I18n.t("ice_cube.each_month", count: interval) end |
#dst_adjust? ⇒ Boolean
24 25 26 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 24 def dst_adjust? true end |
#type ⇒ Object
20 21 22 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 20 def type :month end |
#validate(step_time, start_time) ⇒ Object
28 29 30 31 32 33 34 |
# File 'lib/ice_cube/validations/monthly_interval.rb', line 28 def validate(step_time, start_time) t0, t1 = start_time, step_time months = (t1.month - t0.month) + (t1.year - t0.year) * 12 offset = (months % interval).nonzero? interval - offset if offset end |