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