Class: IceCube::Validations::Day::Validation
- Inherits:
-
FixedValue
- Object
- FixedValue
- IceCube::Validations::Day::Validation
- Defined in:
- lib/ice_cube/validations/day.rb
Constant Summary
Constants inherited from FixedValue
Instance Attribute Summary collapse
-
#day ⇒ Object
(also: #value)
readonly
Returns the value of attribute day.
Instance Method Summary collapse
- #build_hash(builder) ⇒ Object
- #build_ical(builder) ⇒ Object
- #build_s(builder) ⇒ Object
- #dst_adjust? ⇒ Boolean
-
#initialize(day) ⇒ Validation
constructor
A new instance of Validation.
- #key ⇒ Object
- #type ⇒ Object
Methods inherited from FixedValue
Constructor Details
#initialize(day) ⇒ Validation
Returns a new instance of Validation.
23 24 25 |
# File 'lib/ice_cube/validations/day.rb', line 23 def initialize(day) @day = day end |
Instance Attribute Details
#day ⇒ Object (readonly) Also known as: value
Returns the value of attribute day.
20 21 22 |
# File 'lib/ice_cube/validations/day.rb', line 20 def day @day end |
Instance Method Details
#build_hash(builder) ⇒ Object
43 44 45 |
# File 'lib/ice_cube/validations/day.rb', line 43 def build_hash(builder) builder.validations_array(:day) << day end |
#build_ical(builder) ⇒ Object
47 48 49 50 51 52 53 |
# File 'lib/ice_cube/validations/day.rb', line 47 def build_ical(builder) ical_day = IcalBuilder.fixnum_to_ical_day(day) # Only add if there aren't others from day_of_week that override if builder["BYDAY"].none? { |b| b.end_with?(ical_day) } builder["BYDAY"] << ical_day end end |
#build_s(builder) ⇒ Object
39 40 41 |
# File 'lib/ice_cube/validations/day.rb', line 39 def build_s(builder) builder.piece(:day) << day end |
#dst_adjust? ⇒ Boolean
35 36 37 |
# File 'lib/ice_cube/validations/day.rb', line 35 def dst_adjust? true end |
#key ⇒ Object
27 28 29 |
# File 'lib/ice_cube/validations/day.rb', line 27 def key :day end |
#type ⇒ Object
31 32 33 |
# File 'lib/ice_cube/validations/day.rb', line 31 def type :wday end |