Sha256: 4f7f749640c1a4d3dad6837c1081274c90176b4b2eb0523e6a000270ff62b1ed
Contents?: true
Size: 848 Bytes
Versions: 3
Compression:
Stored size: 848 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' # A bakery. class Bakery < Mida::Vocabulary itemtype %r{http://schema.org/Bakery}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