Class: IceCube::Validations::Day::Validation
- Inherits:
-
Object
- Object
- IceCube::Validations::Day::Validation
- Includes:
- Lock
- Defined in:
- lib/ice_cube/validations/day.rb
Constant Summary
Constant Summary
Constants included from Lock
Instance Attribute Summary (collapse)
-
- (Object) day
(also: #value)
readonly
Returns the value of attribute day.
Instance Method Summary (collapse)
- - (Object) build_hash(builder)
- - (Object) build_ical(builder)
- - (Object) build_s(builder)
-
- (Validation) initialize(day)
constructor
A new instance of Validation.
- - (Object) type
Methods included from Lock
Constructor Details
- (Validation) initialize(day)
A new instance of Validation
26 27 28 |
# File 'lib/ice_cube/validations/day.rb', line 26 def initialize(day) @day = day end |
Instance Attribute Details
- (Object) day (readonly) Also known as: value
Returns the value of attribute day
23 24 25 |
# File 'lib/ice_cube/validations/day.rb', line 23 def day @day end |
Instance Method Details
- (Object) build_hash(builder)
34 35 36 |
# File 'lib/ice_cube/validations/day.rb', line 34 def build_hash(builder) builder.validations_array(:day) << day end |
- (Object) build_ical(builder)
38 39 40 41 42 43 44 |
# File 'lib/ice_cube/validations/day.rb', line 38 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 |
- (Object) build_s(builder)
30 31 32 |
# File 'lib/ice_cube/validations/day.rb', line 30 def build_s(builder) builder.piece(:day) << day end |
- (Object) type
46 47 48 |
# File 'lib/ice_cube/validations/day.rb', line 46 def type :wday end |