Sha256: a783a2ddf6e26b5e899c9cf3e19a4aa358be0b7d785028cc42ac2a0838e65bc2

Contents?: true

Size: 594 Bytes

Versions: 4

Compression:

Stored size: 594 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: Checkout page.
    class CheckoutPage < Mida::Vocabulary
      itemtype %r{http://schema.org/CheckoutPage}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/checkoutpage.rb
mida_vocabulary-0.1.2 lib/mida_vocabulary/vocabularies/schemaorg/checkoutpage.rb
mida_vocabulary-0.1.1 lib/mida_vocabulary/vocabularies/schemaorg/checkoutpage.rb
mida_vocabulary-0.1 lib/mida_vocabulary/vocabularies/schemaorg/checkoutpage.rb