Class: DataMapper::Property::String

Inherits:
Object show all
Includes:
PassThroughLoadDump
Defined in:
lib/dm-core/property/string.rb

Direct Known Subclasses

Text

Constant Summary collapse

DEFAULT_LENGTH =
50

Constants inherited from DataMapper::Property

OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from DataMapper::Property

#allow_blank, #allow_nil, #default, #instance_variable_name, #model, #name, #options, #primitive, #reader_visibility, #repository_name, #required, #type, #writer_visibility

Instance Method Summary collapse

Methods included from PassThroughLoadDump

#dump, #load

Methods inherited from Object

#dump, #load, #to_child_key

Methods inherited from DataMapper::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #bind, #custom?, descendants, determine_class, #field, find_class, #get, #get!, #hash, #index, inherited, #inspect, #key?, #lazy?, #lazy_load, #lazy_load_properties, #loaded?, nullable, options, #primitive?, #properties, #required?, #serial?, #set, #set!, #typecast, #unique?, #unique_index, #valid?

Methods included from Chainable

#chainable, #extendable

Methods included from Deprecate

#deprecate

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



20
21
22
23
24
25
26
# File 'lib/dm-core/property/string.rb', line 20

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