Sha256: 7fcc668bbf0b77a134b2767e2bb91c6b58a1249856d40705e38b53a9401a8167
Contents?: true
Size: 320 Bytes
Versions: 9
Compression:
Stored size: 320 Bytes
Contents
module Runbook::Statements class CaptureAll < 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