Sha256: 9d74fb2f692be2db40b4d1c375334cd79c05640eebc9b12d4afc8a52d10cd094
Contents?: true
Size: 849 Bytes
Versions: 3
Compression:
Stored size: 849 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :FoodEstablishment, 'mida_vocabulary/vocabularies/schemaorg/foodestablishment' autoload :LocalBusiness, 'mida_vocabulary/vocabularies/schemaorg/localbusiness' autoload :Organization, 'mida_vocabulary/vocabularies/schemaorg/organization' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' autoload :Place, 'mida_vocabulary/vocabularies/schemaorg/place' # Brewery. class Brewery < Mida::Vocabulary itemtype %r{http://schema.org/Brewery}i include_vocabulary Mida::SchemaOrg::FoodEstablishment include_vocabulary Mida::SchemaOrg::LocalBusiness include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place end end end
Version data entries
3 entries across 2 versions & 1 rubygems