Sha256: d5afaf678643bbf6a6e3d166db4f386b0a2d74c22f1300363f6e26b88acf4def
Contents?: true
Size: 531 Bytes
Versions: 6
Compression:
Stored size: 531 Bytes
Contents
require 'mida/vocabulary' module Mida module SchemaOrg autoload :Thing, 'mida/vocabularies/schemaorg/thing' autoload :CreativeWork, 'mida/vocabularies/schemaorg/creativework' autoload :Article, 'mida/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
6 entries across 6 versions & 1 rubygems