Sha256: b9f26062c8baa210416a9401dfd8ebfb2979a6a87e0a327703267020fbe01483
Contents?: true
Size: 409 Bytes
Versions: 410
Compression:
Stored size: 409 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
410 entries across 410 versions & 1 rubygems