Sha256: 4c637a29a7b30355a79b532acbbdedc9f2fc18d3fdce15f426c6789db0434352
Contents?: true
Size: 650 Bytes
Versions: 6
Compression:
Stored size: 650 Bytes
Contents
require 'mida/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida/vocabularies/schemaorg/thing' autoload :Place, 'mida/vocabularies/schemaorg/place' autoload :Organization, 'mida/vocabularies/schemaorg/organization' autoload :LocalBusiness, 'mida/vocabularies/schemaorg/localbusiness' # A retail good store. class Store < Mida::Vocabulary itemtype %r{http://schema.org/Store}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::LocalBusiness end end end
Version data entries
6 entries across 6 versions & 1 rubygems