Sha256: 0bc4929e7efa62d8c7a27e5ff28cb32f2a465858f83afefd0ec5f5640cf029cb
Contents?: true
Size: 722 Bytes
Versions: 4
Compression:
Stored size: 722 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' autoload :Place, 'mida_vocabulary/vocabularies/schemaorg/place' autoload :Organization, 'mida_vocabulary/vocabularies/schemaorg/organization' autoload :LocalBusiness, 'mida_vocabulary/vocabularies/schemaorg/localbusiness' # A home goods store. class HomeGoodsStore < Mida::Vocabulary itemtype %r{http://schema.org/HomeGoodsStore}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
4 entries across 4 versions & 1 rubygems