Class: Coercible::Coercer::DateTime

Inherits:
Object
  • Object
show all
Includes:
TimeCoercions
Defined in:
lib/coercible/coercer/date_time.rb

Overview

Coerce DateTime values

Constant Summary

Constants inherited from Object

Object::COERCION_METHOD_REGEXP

Constants included from Options

Options::Undefined

Constants included from TypeLookup

TypeLookup::TYPE_FORMAT

Instance Attribute Summary

Attributes inherited from Object

#coercers

Instance Method Summary collapse

Methods included from TimeCoercions

#to_date, #to_string, #to_time

Methods inherited from Object

#coerced?, #initialize, #inspect, #to_array, #to_hash, #to_integer, #to_string

Methods included from Options

#accept_options, #accepted_options, extended, #options

Methods included from TypeLookup

#determine_type, extended, #primitive

Constructor Details

This class inherits a constructor from Coercible::Coercer::Object

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Coercible::Coercer::Object

Instance Method Details

#to_datetime(value) ⇒ Date

Passthrough the value

Examples:

coercer[DateTime].to_datetime(datetime)  # => DateTime object

Parameters:

Returns:



20
21
22
# File 'lib/coercible/coercer/date_time.rb', line 20

def to_datetime(value)
  value
end