Sha256: 247c00800abcf9399feebc6756b6e37f44577e04e3eaff3682fc8510efd0cdc7
Contents?: true
Size: 718 Bytes
Versions: 3
Compression:
Stored size: 718 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg 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 moving company. class MovingCompany < Mida::Vocabulary itemtype %r{http://schema.org/MovingCompany}i 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