Sha256: c4afe28688274d0ef3ae3c2dfb333c70bdd8a2eed157ee74164fc606c514232b
Contents?: true
Size: 782 Bytes
Versions: 6
Compression:
Stored size: 782 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' autoload :FoodEstablishment, 'mida/vocabularies/schemaorg/foodestablishment' # A winery. class Winery < Mida::Vocabulary itemtype %r{http://schema.org/Winery}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::LocalBusiness include_vocabulary Mida::SchemaOrg::FoodEstablishment end end end
Version data entries
6 entries across 6 versions & 1 rubygems