class Seedster::Configuration

Attributes

dump_database[RW]
dump_host[RW]
dump_password[RW]
dump_username[RW]
load_database[RW]
load_host[RW]
load_password[RW]
load_username[RW]
query_params[RW]
remote_host_path[RW]
skip_download[RW]
ssh_host[RW]
ssh_user[RW]
tables[RW]

Public Class Methods

new() click to toggle source
# File lib/seedster.rb, line 44
def initialize
  @dump_host = nil
  @dump_database = nil
  @dump_username = nil
  @dump_password = nil
  @load_host = nil
  @load_database = nil
  @load_username = nil
  @load_password = nil
  @remote_host_path = nil
  @query_params = {}
  @ssh_user = nil
  @ssh_host = nil
  @tables = []
  @skip_download = false
end