Sha256: d52a93b154d1fee1b10d4dc4a20b113d1eb0c78471c5565494e63ef2e1f98af2

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

module Eeml
  module Constants
    XSI_NAMESPACE = "http://www.w3.org/2001/XMLSchema-instance"

    JSON_API = {}
    EEML = {}

    # This is what we called version 5
    EEML["0.5.0"] =
      {
        :href => 'http://www.eeml.org/xsd/005',
        :versions => ['5', '0.5.0'],
        :schema_location => 'http://www.eeml.org/xsd/005 http://www.eeml.org/xsd/005/005.xsd'
      }

    # This is NEWER than version 5
    EEML["0.5.1"] = 
      {
        :href => 'http://www.eeml.org/xsd/0.5.1',
        :versions => '0.5.1',
        :schema_location => 'http://www.eeml.org/xsd/0.5.1 http://www.eeml.org/xsd/0.5.1/0.5.1.xsd'
      }

    # This is NEWER than version 5
    EEML["0.5.2"] = 
      {
        :href => 'http://www.eeml.org/xsd/0.5.2',
        :versions => '0.5.2',
        :schema_location => 'http://www.eeml.org/xsd/0.5.2 http://www.eeml.org/xsd/0.5.2/0.5.2.xsd'
      }

    JSON_API["0.6-alpha"] =
      {
        :versions => ['0.6', '0.6-alpha']
      }

    JSON_API["1.0.0"] =
      {
        :versions => ['1.0.0']
      }


  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eeml-0.0.36 lib/eeml/constants.rb