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