aboutsummaryrefslogtreecommitdiff
path: root/lib/hosts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hosts.rb')
-rw-r--r--lib/hosts.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/hosts.rb b/lib/hosts.rb
new file mode 100644
index 0000000..1a0fc27
--- /dev/null
+++ b/lib/hosts.rb
@@ -0,0 +1,22 @@
+module SSHConfig
+ class Hosts
+ attr_reader :hosts
+
+ def initialize(&block)
+ @hosts = []
+ self.instance_eval(&block)
+ end
+
+ def merge(morehosts)
+ @hosts += morehosts.hosts
+ end
+
+ def host(name)
+ @hosts << Host.new(name, &Proc.new)
+ end
+
+ def to_s
+ @hosts.map(&:to_s).join("\n")
+ end
+ end
+end