Class: Veto::LengthRangeCheck
- Inherits:
-
AttributeCheck
- Object
- Check
- AttributeCheck
- Veto::LengthRangeCheck
- Defined in:
- lib/veto/checks/length_range_check.rb
Instance Method Summary collapse
Methods inherited from AttributeCheck
Methods inherited from Check
Constructor Details
This class inherits a constructor from Veto::AttributeCheck
Instance Method Details
#check(attribute, value, errors, options = {}) ⇒ Object
3 4 5 6 7 8 9 10 11 12 |
# File 'lib/veto/checks/length_range_check.rb', line 3 def check(attribute, value, errors, ={}) range = .fetch(:in) inclusion_method = range.respond_to?(:cover?) ? :cover? : :include? = .fetch(:message, :length_range) on = .fetch(:on, attribute) if value.nil? || !range.send(inclusion_method, value.length) errors.add(on, ) end end |