Sha256: 0cb9602b4b72906dadca871e1f879c1fb9f581710fda9917ba004af888f60b47
Contents?: true
Size: 575 Bytes
Versions: 4
Compression:
Stored size: 575 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' autoload :CreativeWork, 'mida_vocabulary/vocabularies/schemaorg/creativework' autoload :Article, 'mida_vocabulary/vocabularies/schemaorg/article' # A blog post. class BlogPosting < Mida::Vocabulary itemtype %r{http://schema.org/BlogPosting}i include_vocabulary Mida::SchemaOrg::Thing include_vocabulary Mida::SchemaOrg::CreativeWork include_vocabulary Mida::SchemaOrg::Article end end end
Version data entries
4 entries across 4 versions & 1 rubygems