Class: IceCube::Validations::Day::Validation
- Inherits:
-
Object
- Object
- IceCube::Validations::Day::Validation
- Includes:
- Lock
- Defined in:
- lib/ice_cube/validations/day.rb
Constant Summary
Constants included from Lock
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
-
#initialize(day) ⇒ Validation
constructor
A new instance of Validation.
- #type ⇒ Object
Methods included from Lock
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
31 32 33 |
# File 'lib/ice_cube/validations/day.rb', line 31 def build_hash(builder) builder.validations_array(:day) << day end |
#build_ical(builder) ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/ice_cube/validations/day.rb', line 35 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
27 28 29 |
# File 'lib/ice_cube/validations/day.rb', line 27 def build_s(builder) builder.piece(:day) << day end |
#type ⇒ Object
43 44 45 |
# File 'lib/ice_cube/validations/day.rb', line 43 def type :wday end |