module Fetcher class Microdata class ArticleSmall < Fetcher::Microdata def initialize *args if args.length == 3 super *args else raise ArgumentError, "Wrong number of arguments #{args.length} and 3 needed" end @_type = "http://schema.org/Article/Small" end attribute :additionalType attribute :id attribute :articleBody attribute :author attribute :viewer attribute :dateCreated attribute :provider attribute :url attribute :comments end end end