aboutsummaryrefslogtreecommitdiff
path: root/lib/sshconfig.rb
blob: 204a127c5ca1820c2a5e1c76be8cd396c49b0002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'host'
require 'hosts'

module SSHConfig
  YES = "yes"
  NO = "no"

  $hostlist = Hosts.new{}

  def hosts
    $hostlist.merge(Hosts.new(&Proc.new))
  end
end