Module: Objectmancy::Types

Defined in:
lib/objectmancy/types.rb

Overview

Namespace for storing type logic around manipulating different data types.

Constant Summary collapse

DATETIME =

DateTime special type specification

{
  klass: ISO8601::DateTime,
  objectable: :new,
  hashable: :to_s
}.freeze
SPECIAL_TYPES =

Known types with special behavior defined.

{
  datetime: DATETIME
}.freeze