Class: Virtus::Attributes::DateTime

Inherits:
Object show all
Includes:
Typecast::Time
Defined in:
lib/virtus/attributes/date_time.rb

Constant Summary

Constants inherited from Attribute

Attribute::DEFAULT_ACCESSOR, Attribute::OPTIONS

Instance Attribute Summary

Attributes inherited from Attribute

#instance_variable_name, #model, #name, #options, #reader_visibility, #writer_visibility

Instance Method Summary collapse

Methods included from Typecast::Time

#extract_time

Methods included from Typecast::Numeric

#typecast_to_numeric

Methods inherited from Attribute

#_create_reader, #_create_writer, accept_options, accepted_options, #complex?, descendants, #get, #get!, inherited, #initialize, options, #primitive?, #set, #set!, #typecast

Constructor Details

This class inherits a constructor from Virtus::Attributes::Attribute

Instance Method Details

#typecast_hash_to_datetime(value) ⇒ DateTime

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 DateTime instance from a Hash with keys :year, :month, :day, :hour, :min, :sec

Parameters:

  • value (Hash, #to_mash)

    value to be typecast

Returns:

  • (DateTime)

    DateTime constructed from hash



38
39
40
# File 'lib/virtus/attributes/date_time.rb', line 38

def typecast_hash_to_datetime(value)
  ::DateTime.new(*extract_time(value))
end

#typecast_to_primitive(value, model = nil) ⇒ DateTime

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 DateTime. Handles both Hashes and DateTime instances.

Parameters:

  • value (Hash, #to_mash, #to_s)

    value to be typecast

Returns:

  • (DateTime)

    DateTime constructed from value



18
19
20
21
22
23
24
25
26
# File 'lib/virtus/attributes/date_time.rb', line 18

def typecast_to_primitive(value, model = nil)
  if value.is_a?(::Hash)
    typecast_hash_to_datetime(value)
  else
    ::DateTime.parse(value.to_s)
  end
rescue ArgumentError
  value
end