Sha256: 2ce4fc52647f52ce8ebf1c1d8331fc28c98cf40f5995d298dc61f72dc8a78021
Contents?: true
Size: 654 Bytes
Versions: 6
Compression:
Stored size: 654 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 comedy club. class ComedyClub < Mida::Vocabulary itemtype %r{http://schema.org/ComedyClub}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