Sha256: 636cc02a86616a6496e97f212382233a07d968add8c9887684774bdd51435078
Contents?: true
Size: 317 Bytes
Versions: 9
Compression:
Stored size: 317 Bytes
Contents
module Runbook::Statements class Capture < Runbook::Statement attr_reader :cmd, :into, :ssh_config, :raw, :strip def initialize(cmd, into:, ssh_config: nil, raw: false, strip: true) @cmd = cmd @into = into @ssh_config = ssh_config @raw = raw @strip = strip end end end
Version data entries
9 entries across 9 versions & 2 rubygems