class Dumpman::Connection

Attributes

app_env[RW]
app_path[RW]
docker_image[RW]
fetch_strategy[RW]
name[RW]
ssh_cmd[RW]
ssh_opts[RW]

Public Class Methods

new(name) click to toggle source
# File lib/dumpman/connection.rb, line 5
def initialize(name)
  @name = name
end

Public Instance Methods

attrs() click to toggle source
# File lib/dumpman/connection.rb, line 9
def attrs
  {
    app_env: @app_env,
    ssh_cmd: @ssh_cmd,
    ssh_opts: @ssh_opts,
    app_path: @app_path,
    fetch_strategy: @fetch_strategy,
    docker_image: @docker_image,
  }
end