Sha256: 61051f79edfe4f48c85c2823a9f8a10dcbd74a3329f233d4836eed4d13b04ed4

Contents?: true

Size: 599 Bytes

Versions: 4

Compression:

Stored size: 599 Bytes

Contents

require 'mida_vocabulary/vocabulary'

module Mida
  module SchemaOrg

    autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing'
    autoload :CreativeWork, 'mida_vocabulary/vocabularies/schemaorg/creativework'
    autoload :WebPage, 'mida_vocabulary/vocabularies/schemaorg/webpage'

    # Web page type: Image gallery page.
    class ImageGallery < Mida::Vocabulary
      itemtype %r{http://schema.org/ImageGallery}i
      include_vocabulary Mida::SchemaOrg::Thing
      include_vocabulary Mida::SchemaOrg::CreativeWork
      include_vocabulary Mida::SchemaOrg::WebPage
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mida_vocabulary-0.1.3 lib/mida_vocabulary/vocabularies/schemaorg/imagegallery.rb
mida_vocabulary-0.1.2 lib/mida_vocabulary/vocabularies/schemaorg/imagegallery.rb
mida_vocabulary-0.1.1 lib/mida_vocabulary/vocabularies/schemaorg/imagegallery.rb
mida_vocabulary-0.1 lib/mida_vocabulary/vocabularies/schemaorg/imagegallery.rb