Sha256: a8fa859982d053e086c13927a76d2157c3ec4ede353943309d97449331257a9c
Contents?: true
Size: 635 Bytes
Versions: 23
Compression:
Stored size: 635 Bytes
Contents
# frozen_string_literal: true module Bolt class PAL class YamlPlan class Step class Verbose < Step def self.allowed_keys super + Set['verbose'] end def self.required_keys Set['verbose'] end # Returns an array of arguments to pass to the step's function call # private def format_args(body) [body['verbose']] end # Returns the function corresponding to the step # private def function 'out::verbose' end end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems