Method: Sequel::Plugins::ValidationHelpers::InstanceMethods#validates_exact_length
- Defined in:
- lib/sequel/plugins/validation_helpers.rb
permalink #validates_exact_length(exact, atts, opts = OPTS) ⇒ Object
Check that the attribute values are the given exact length.
105 106 107 |
# File 'lib/sequel/plugins/validation_helpers.rb', line 105 def validates_exact_length(exact, atts, opts=OPTS) validatable_attributes_for_type(:exact_length, atts, opts){|a,v,m| (m, exact) if v.nil? || v.length != exact} end |