Class: Net::SSH::HostKeys

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/net/ssh/known_hosts.rb

Overview

Represents the result of a search in known hosts see search_for

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(host_keys, host, known_hosts, options = {}) ⇒ HostKeys

Returns a new instance of HostKeys.



15
16
17
18
19
20
# File 'lib/net/ssh/known_hosts.rb', line 15

def initialize(host_keys, host, known_hosts, options = {})
  @host_keys = host_keys
  @host = host
  @known_hosts = known_hosts
  @options = options
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



13
14
15
# File 'lib/net/ssh/known_hosts.rb', line 13

def host
  @host
end

Instance Method Details

#add_host_key(key) ⇒ Object



22
23
24
25
# File 'lib/net/ssh/known_hosts.rb', line 22

def add_host_key(key)
  @known_hosts.add(@host, key, @options)
  @host_keys.push(key)
end

#each(&block) ⇒ Object



27
28
29
# File 'lib/net/ssh/known_hosts.rb', line 27

def each(&block)
  @host_keys.each(&block)
end

#empty?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/net/ssh/known_hosts.rb', line 31

def empty?
  @host_keys.empty?
end