Class: Compel::Validation::MaxLength
- Defined in:
- lib/compel/validation/conditions/max_length.rb
Instance Attribute Summary
Attributes inherited from Condition
#option_value, #options, #value, #value_type
Instance Method Summary collapse
Methods inherited from Condition
#initialize, validate, #validate
Constructor Details
This class inherits a constructor from Compel::Validation::Condition
Instance Method Details
#validate_value ⇒ Object
6 7 8 9 10 |
# File 'lib/compel/validation/conditions/max_length.rb', line 6 def validate_value unless valid? "cannot have length greater than #{option_value}" end end |