Sha256: 8b35d5d8ea674507bd754c864e5ba8b5292ec1bb4985e913c104064a82c1be4f
Contents?: true
Size: 663 Bytes
Versions: 6
Compression:
Stored size: 663 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 tennis complex. class TennisComplex < Mida::Vocabulary itemtype %r{http://schema.org/TennisComplex}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