Sha256: 0292e3a71c1177bd6854d79f7b890d9da5c7cb347c7a60c66e0f9dc5307d56f5
Contents?: true
Size: 795 Bytes
Versions: 6
Compression:
Stored size: 795 Bytes
Contents
require 'mida/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida/vocabularies/schemaorg/thing' autoload :Place, 'mida/vocabularies/schemaorg/place' autoload :Organization, 'mida/vocabularies/schemaorg/organization' autoload :LocalBusiness, 'mida/vocabularies/schemaorg/localbusiness' autoload :CivicStructure, 'mida/vocabularies/schemaorg/civicstructure' # A police station. class PoliceStation < Mida::Vocabulary itemtype %r{http://schema.org/PoliceStation}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::LocalBusiness include_vocabulary Mida::SchemaOrg::CivicStructure end end end
Version data entries
6 entries across 6 versions & 1 rubygems