Class: Jschematic::Attributes::MaxLength

Inherits:
Object
  • Object
show all
Includes:
Element
Defined in:
lib/jschematic/attributes/min_length.rb

Instance Attribute Summary

Attributes included from Element

#id, #parent

Instance Method Summary collapse

Methods included from Element

#required?, #schema_for, #title, #to_s

Constructor Details

#initialize(length) ⇒ MaxLength

Returns a new instance of MaxLength.



8
9
10
# File 'lib/jschematic/attributes/min_length.rb', line 8

def initialize(length)
  @length = length
end

Instance Method Details

#accepts?(instance) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
15
# File 'lib/jschematic/attributes/min_length.rb', line 12

def accepts?(instance)
  return true unless String === instance
  (instance.length <= @length) || fail_validation!("maximum length of #{@length}", instance.length)
end