Method: Beaker::LocalConnection#initialize

Defined in:
lib/beaker/local_connection.rb

#initialize(options = {}) ⇒ LocalConnection

Returns a new instance of LocalConnection.



7
8
9
10
11
12
13
# File 'lib/beaker/local_connection.rb', line 7

def initialize options = {}
  @logger = options[:logger]
  @ssh_env_file = File.expand_path(options[:ssh_env_file])
  @hostname = 'localhost'
  @ip = '127.0.0.1'
  @options = options
end