Class: IceCube::Validations::HourlyInterval::Validation
- Inherits:
-
Object
- Object
- IceCube::Validations::HourlyInterval::Validation
- Defined in:
- lib/ice_cube/validations/hourly_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.
15 16 17 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 15 def initialize(interval) @interval = interval end |
Instance Attribute Details
#interval ⇒ Object (readonly)
Returns the value of attribute interval.
13 14 15 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 13 def interval @interval end |
Instance Method Details
#build_hash(builder) ⇒ Object
40 41 42 |
# File 'lib/ice_cube/validations/hourly_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/hourly_interval.rb', line 44 def build_ical(builder) builder["FREQ"] << "HOURLY" builder["INTERVAL"] << interval unless interval == 1 end |
#build_s(builder) ⇒ Object
36 37 38 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 36 def build_s(builder) builder.base = IceCube::I18n.t("ice_cube.each_hour", count: interval) end |
#dst_adjust? ⇒ Boolean
23 24 25 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 23 def dst_adjust? false end |
#type ⇒ Object
19 20 21 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 19 def type :hour end |
#validate(step_time, start_time) ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/ice_cube/validations/hourly_interval.rb', line 27 def validate(step_time, start_time) t0, t1 = start_time.to_i, step_time.to_i sec = (t1 - t1 % ONE_HOUR) - (t0 - t0 % ONE_HOUR) hours = sec / ONE_HOUR offset = (hours % interval).nonzero? interval - offset if offset end |