Sha256: 0d3ef04339c208b81c5c2c69db761dce3fa5dcc056f6bdc1fdab393ad168ac44
Contents?: true
Size: 414 Bytes
Versions: 186
Compression:
Stored size: 414 Bytes
Contents
module GovukPublishingComponents module Presenters class IsPartOfSchema def initialize(is_part_of_url) @is_part_of_url = is_part_of_url end def structured_data # http://schema.org/isPartOf - minimal { "@context" => "http://schema.org", "@type" => "CreativeWork", "sameAs" => @is_part_of_url } end end end end
Version data entries
186 entries across 186 versions & 1 rubygems