class Net::SSH::HostKeys

Represents the result of a search in known hosts see search_for

Attributes

host[R]

Public Class Methods

new(host_keys, host, known_hosts, options = {}) click to toggle source
# File lib/net/ssh/known_hosts.rb, line 16
def initialize(host_keys, host, known_hosts, options = {})
  @host_keys = host_keys
  @host = host
  @known_hosts = known_hosts
  @options = options
end

Public Instance Methods

add_host_key(key) click to toggle source
# File lib/net/ssh/known_hosts.rb, line 23
def add_host_key(key)
  @known_hosts.add(@host, key, @options)
  @host_keys.push(key)
end
each(&block) click to toggle source
# File lib/net/ssh/known_hosts.rb, line 28
def each(&block)
  @host_keys.each(&block)
end
empty?() click to toggle source
# File lib/net/ssh/known_hosts.rb, line 32
def empty?
  @host_keys.empty?
end