Module: DataMapper::Validations::ValidatesLength
- Extended by:
- Deprecate
- Included in:
- ClassMethods
- Defined in:
- lib/dm-validations/validators/length_validator.rb
Overview
class LengthValidator
Instance Method Summary collapse
-
#validates_length_of(*fields) ⇒ Object
Validates that the length of the attribute is equal to, less than, greater than or within a certain range (depending upon the options you specify).
Instance Method Details
#validates_length_of(*fields) ⇒ Object
Validates that the length of the attribute is equal to, less than, greater than or within a certain range (depending upon the options you specify).
242 243 244 |
# File 'lib/dm-validations/validators/length_validator.rb', line 242 def validates_length_of(*fields) validators.add(LengthValidator, *fields) end |