module SSHKit

 @author Lee Hambley

Constants

StandardError
UnparsableHostStringError
VERSION

Attributes

config[W]

Public Class Methods

config() click to toggle source
# File lib/sshkit.rb, line 14
def config
  @@config ||= Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/sshkit.rb, line 9
def configure
  @@config ||= Configuration.new
  yield config
end
reset_configuration!() click to toggle source
# File lib/sshkit.rb, line 18
def reset_configuration!
  @@config = nil
end