Module: IceCube::Validations::Until
- Extended by:
- Deprecated
- Included in:
- IceCube::ValidatedRule
- Defined in:
- lib/ice_cube/validations/until.rb
Defined Under Namespace
Classes: Validation
Instance Method Summary collapse
- #until(time) ⇒ Object
-
#until_time ⇒ Object
Value reader for limit.
Methods included from Deprecated
Instance Method Details
#until(time) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/ice_cube/validations/until.rb', line 13 def until(time) time = TimeUtil.ensure_time(time, true) @until = time replace_validations_for(:until, time.nil? ? nil : [Validation.new(time)]) self end |
#until_time ⇒ Object
Value reader for limit
8 9 10 |
# File 'lib/ice_cube/validations/until.rb', line 8 def until_time @until end |