Sha256: ff2d204ef15dce8c5518d786ac3412e250b35f3d2d1493f421b8ffb2d947bd2f
Contents?: true
Size: 651 Bytes
Versions: 6
Compression:
Stored size: 651 Bytes
Contents
require 'mida/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida/vocabularies/schemaorg/thing' autoload :Organization, 'mida/vocabularies/schemaorg/organization' autoload :EducationalOrganization, 'mida/vocabularies/schemaorg/educationalorganization' # A college, university, or other third-level educational institution. class CollegeOrUniversity < Mida::Vocabulary itemtype %r{http://schema.org/CollegeOrUniversity}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::EducationalOrganization end end end
Version data entries
6 entries across 6 versions & 1 rubygems