Class: Ardm::Property::String

Inherits:
Object show all
Defined in:
lib/ardm/property/string.rb

Direct Known Subclasses

APIKey, BCryptHash, Binary, Csv, FilePath, IPAddress, Regexp, Slug, Text, URI, UUID

Constant Summary collapse

DEFAULT_LENGTH =
50

Constants inherited from Ardm::Property

INVALID_NAMES, Infinity, JSON, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from Ardm::Property

#allow_blank, #allow_nil, #coercion_method, #default, #dump_as, #index, #instance_variable_name, #load_as, #model, #name, #options, #reader_visibility, #required, #unique_index, #writer_visibility

Instance Method Summary collapse

Methods inherited from Object

#dump, #load, #marshal, #to_child_key, #unmarshal

Methods inherited from Ardm::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_value, #bind, demodulize, demodulized_names, descendants, determine_class, #field, find_class, #get, #get!, inherited, #inspect, #key?, #lazy?, #loaded?, options, primitive, #primitive, #primitive?, #properties, #required?, #serial?, #set, #set!, #set_default_value, #typecast, #unique?, #valid?, #value_dumped?, #value_loaded?

Methods included from Equalizer

#equalize

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Instance Method Details

#lengthInteger?

Returns maximum property length (if applicable). This usually only makes sense when property is of type Range or custom

Returns:

  • (Integer, nil)

    the maximum length of this property



23
24
25
26
27
28
29
# File 'lib/ardm/property/string.rb', line 23

def length
  if @length.kind_of?(Range)
    @length.max
  else
    @length
  end
end