Sha256: b14a45e87c52d8a9d1675c2a75173bab326960c2036db232d38f0f43a4abab80
Contents?: true
Size: 440 Bytes
Versions: 4
Compression:
Stored size: 440 Bytes
Contents
# frozen_string_literal: true require 'puppet-strings/markdown/base' module PuppetStrings::Markdown class PuppetTask < Base def initialize(registry) @template = 'puppet_task.erb' @registry = registry super(registry, 'task') end def render super(@template) end def supports_noop @registry[:supports_noop] end def input_method @registry[:input_method] end end end
Version data entries
4 entries across 4 versions & 1 rubygems