Sha256: 3f41e7f762025e2ab7e7dcc387ce985ff0663d96f55de1034d871480630dfef4
Contents?: true
Size: 1.21 KB
Versions: 7
Compression:
Stored size: 1.21 KB
Contents
module Eeml module Constants # LOCAL_EEML5_SCHEMA_LOCATION = "schemas/eeml/005.xsd" # :nodoc: # EEML5_HREF = "http://www.eeml.org/xsd/005" # EEML5_VERSION = "5" # EEML5_SCHEMA_LOCATION = "http://www.eeml.org/xsd/005 http://www.eeml.org/xsd/005/005.xsd" # EEML5_NAMESPACE = ":#{EEML5_HREF}" XSI_NAMESPACE = "http://www.w3.org/2001/XMLSchema-instance" # EEML6_VERSION = "0.6-alpha1" # Not calling this EEML as json is not part of the eeml spec # JSON_1_0_0_VERSION = "1.0.0" # EEML6_RC1_VERSION = "0.6-rc1" JSON_API = {} EEML = {} # This is what we called version 5 EEML["0.5.0"] = { :href => 'http://www.eeml.org/xsd/005', :version => '5', :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', :version => '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' } JSON_API["0.6-alpha"] = { :version => '0.6-alpha' } JSON_API["1.0.0"] = { :version => "1.0.0" } end end
Version data entries
7 entries across 7 versions & 1 rubygems