require 'mida/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida/vocabularies/schemaorg/thing' autoload :Place, 'mida/vocabularies/schemaorg/place' # A mountain, like Mount Whitney or Mount Everest class Mountain < Mida::Vocabulary itemtype %r{http://schema.org/Mountain}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place end end end