Sha256: 28a45fda9c6d3bb2368e48886186292717b06f849398b4b0395754cca3547748
Contents?: true
Size: 288 Bytes
Versions: 9
Compression:
Stored size: 288 Bytes
Contents
module Runbook::Statements class Download < Runbook::Statement attr_reader :from, :to, :options, :ssh_config def initialize(from, to: nil, ssh_config: nil, options: {}) @from = from @to = to @ssh_config = ssh_config @options = options end end end
Version data entries
9 entries across 9 versions & 2 rubygems