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

Methods included from Deprecated

deprecated, deprecated_alias

Instance Method Details

#until(time) ⇒ Object



13
14
15
16
17
# File 'lib/ice_cube/validations/until.rb', line 13

def until(time)
  @until = time
  replace_validations_for(:until, [Validation.new(time)])
  self
end

#until_timeObject

accessor



8
9
10
# File 'lib/ice_cube/validations/until.rb', line 8

def until_time
  @until
end