Sha256: 2e1d7e7ae2d5bf7e932ec5384aa578d096022ca0cb91e34e40bd3a59c1a21e23

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

CDM::DATA_TYPES = {
  binary:         {
    descriptor:         "Binary",
    default_options:    {}
  },
  boolean:        {
    descriptor:         "Boolean",
    default_options:    {}
  },
  date:           {
    descriptor:         "Date",
    default_options:    {}
  },
  decimal:        {
    descriptor:         "Decimal",
    default_options:    {
      defaultValueString:   "0.0"
    }
  },
  double:         {
    descriptor:         "Double",
    default_options:    {
      defaultValueString:   "0.0"
    }
  },
  float:          {
    descriptor:         "Float",
    default_options:    {
      defaultValueString:   "0.0"
    }
  },
  int16:          {
    descriptor:         "Integer 16",
    default_options:    {
      defaultValueString:   "0"
    }
  },
  int32:          {
    descriptor:         "Integer 32",
    default_options:    {
      defaultValueString:   "0"
    }
  },
  int64:          {
    descriptor:         "Integer 64",
    default_options:    {
      defaultValueString:   "0"
    }
  },
  string:         {
    descriptor:         "String",
    default_options:    {}
  },
  transformable:  {
    descriptor:         "Transformable",
    default_options:    {}
  },
}

CDM::DEFAULT_ATTRIBUTE_OPTIONS = {
  syncable:     "YES",
  optional:     "YES"
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
core_data_motion-0.0.1 lib/core_data_motion/data_types.rb