class Runbook::Statements::Upload

Attributes

from[R]
options[R]
ssh_config[R]
to[R]

Public Class Methods

new(from, to:, ssh_config: nil, options: {}) click to toggle source
# File lib/runbook/statements/upload.rb, line 5
def initialize(from, to:, ssh_config: nil, options: {})
  @from = from
  @to = to
  @ssh_config = ssh_config
  @options = options
end