Class: DataMapper::Property::Date
- Inherits:
-
Object
- Object
- DataMapper::Property
- Object
- DataMapper::Property::Date
- Includes:
- PassThroughLoadDump, Typecast::Time
- Defined in:
- lib/dm-core/property/date.rb
Constant Summary
Constants inherited from DataMapper::Property
INVALID_NAMES, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS
Instance Attribute Summary
Attributes inherited from DataMapper::Property
#allow_blank, #allow_nil, #default, #index, #instance_variable_name, #model, #name, #options, #primitive, #reader_visibility, #repository_name, #required, #unique_index, #writer_visibility
Instance Method Summary collapse
-
#typecast_hash_to_date(value) ⇒ Date
private
Creates a Date instance from a Hash with keys :year, :month, :day.
-
#typecast_to_primitive(value) ⇒ Date
private
Typecasts an arbitrary value to a Date Handles both Hashes and Date instances.
Methods included from Typecast::Time
Methods included from Typecast::Numeric
Methods included from PassThroughLoadDump
Methods inherited from Object
Methods inherited from DataMapper::Property
accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_options, #bind, demodulized_names, descendants, determine_class, #determine_visibility, #field, find_class, #get, #get!, inherited, #initialize, #inspect, #key?, #lazy?, #lazy_load, #lazy_load_properties, #loaded?, nullable, options, #primitive?, #properties, #required?, #serial?, #set, #set!, #typecast, #unique?, #valid?
Methods included from Chainable
Methods included from Equalizer
Methods included from Deprecate
Methods included from Subject
Methods included from Assertions
Constructor Details
This class inherits a constructor from DataMapper::Property
Instance Method Details
#typecast_hash_to_date(value) ⇒ Date
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Creates a Date instance from a Hash with keys :year, :month, :day
42 43 44 |
# File 'lib/dm-core/property/date.rb', line 42 def typecast_hash_to_date(value) ::Date.new(*extract_time(value)[0, 3]) end |
#typecast_to_primitive(value) ⇒ Date
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Typecasts an arbitrary value to a Date Handles both Hashes and Date instances.
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/dm-core/property/date.rb', line 21 def typecast_to_primitive(value) if value.respond_to?(:to_date) value.to_date elsif value.is_a?(::Hash) || value.respond_to?(:to_mash) typecast_hash_to_date(value) else ::Date.parse(value.to_s) end rescue ArgumentError value end |