aboutsummaryrefslogtreecommitdiff
path: root/lib/host.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/host.rb')
-rw-r--r--lib/host.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/host.rb b/lib/host.rb
new file mode 100644
index 0000000..90c3e2e
--- /dev/null
+++ b/lib/host.rb
@@ -0,0 +1,19 @@
+module SSHConfig
+ class Host
+ def initialize(name, &block)
+ @name = name
+ @directives = {}
+ self.instance_eval(&block)
+ end
+
+ def method_missing(meth, arg)
+ @directives[meth.capitalize] = arg
+ end
+
+ def to_s
+ "Host #{@name}\n" +
+ @directives.map { |k, v| "\t#{k} #{v}" }.join("\n") +
+ "\n"
+ end
+ end
+end