Sha256: 9f84e21b90ec067ab762ef137cfa43ba6e374b9ad72e6cce5219835de9e4b723

Contents?: true

Size: 761 Bytes

Versions: 1

Compression:

Stored size: 761 Bytes

Contents

require 'mida_vocabulary/vocabulary'

module Mida
  module SchemaOrg

    autoload :SoftwareApplication, 'mida_vocabulary/vocabularies/schemaorg/softwareapplication'
    autoload :CreativeWork, 'mida_vocabulary/vocabularies/schemaorg/creativework'
    autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing'

    # Web applications.
    class WebApplication < Mida::Vocabulary
      itemtype %r{http://schema.org/WebApplication}i
      include_vocabulary Mida::SchemaOrg::SoftwareApplication
      include_vocabulary Mida::SchemaOrg::CreativeWork
      include_vocabulary Mida::SchemaOrg::Thing

      # Specifies browser requirements in human-readable text. For example,"requires HTML5 support".
      has_many 'browserRequirements'
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mida_vocabulary-0.2.2 lib/mida_vocabulary/vocabularies/schemaorg/webapplication.rb