Sha256: 2b0fb16c08d62312afde8094e4df54d2ca3a5eb65d8e03c4859eb259eb87c12d
Contents?: true
Size: 581 Bytes
Versions: 3
Compression:
Stored size: 581 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :CivicStructure, 'mida_vocabulary/vocabularies/schemaorg/civicstructure' autoload :Place, 'mida_vocabulary/vocabularies/schemaorg/place' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # A train station. class TrainStation < Mida::Vocabulary itemtype %r{http://schema.org/TrainStation}i include_vocabulary Mida::SchemaOrg::CivicStructure include_vocabulary Mida::SchemaOrg::Place include_vocabulary Mida::SchemaOrg::Thing end end end
Version data entries
3 entries across 2 versions & 1 rubygems