Sha256: 6a48841a55d49d6a79e880e651e3b4a51ebf8a88bfc2f54e7ad82de62b937834
Contents?: true
Size: 703 Bytes
Versions: 3
Compression:
Stored size: 703 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :LocalBusiness, 'mida_vocabulary/vocabularies/schemaorg/localbusiness' autoload :Organization, 'mida_vocabulary/vocabularies/schemaorg/organization' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' autoload :Place, 'mida_vocabulary/vocabularies/schemaorg/place' # A gym. class ExerciseGym < Mida::Vocabulary itemtype %r{http://schema.org/ExerciseGym}i include_vocabulary Mida::SchemaOrg::LocalBusiness include_vocabulary Mida::SchemaOrg::Organization include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::Place end end end
Version data entries
3 entries across 2 versions & 1 rubygems