Sha256: b3fac7f4e16942b017059954fba1e3986ae0d4e94ae2bc7919049f833b9c6a21

Contents?: true

Size: 792 Bytes

Versions: 6

Compression:

Stored size: 792 Bytes

Contents

require 'mida/vocabulary'

module Mida
  module SchemaOrg

    autoload :Thing, 'mida/vocabularies/schemaorg/thing'
    autoload :Place, 'mida/vocabularies/schemaorg/place'
    autoload :CivicStructure, 'mida/vocabularies/schemaorg/civicstructure'
    autoload :Organization, 'mida/vocabularies/schemaorg/organization'
    autoload :LocalBusiness, 'mida/vocabularies/schemaorg/localbusiness'

    # A movie theater.
    class MovieTheater < Mida::Vocabulary
      itemtype %r{http://schema.org/MovieTheater}i
      include_vocabulary Mida::SchemaOrg::Thing
      include_vocabulary Mida::SchemaOrg::Place
      include_vocabulary Mida::SchemaOrg::CivicStructure
      include_vocabulary Mida::SchemaOrg::Organization
      include_vocabulary Mida::SchemaOrg::LocalBusiness
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mida-0.4.0 lib/mida/vocabularies/schemaorg/movietheater.rb
mida-0.3.9 lib/mida/vocabularies/schemaorg/movietheater.rb
mida-0.3.8 lib/mida/vocabularies/schemaorg/movietheater.rb
mida-0.3.7 lib/mida/vocabularies/schemaorg/movietheater.rb
mida-0.3.6 lib/mida/vocabularies/schemaorg/movietheater.rb
mida-0.3.3 lib/mida/vocabularies/schemaorg/movietheater.rb