aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/console.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-01 00:16:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-02-01 00:16:26 -0200
commitd53d327c576bc48bfd0c079d4344b49b86c5e5cf (patch)
tree4245537c66c914227b6d5ba3a29e3890d9938331 /lib/keyringer/console.rb
parent575f4ced80428f7063a00c6957956d7160b6f31c (diff)
downloadkeyringer-d53d327c576bc48bfd0c079d4344b49b86c5e5cf.tar.gz
keyringer-d53d327c576bc48bfd0c079d4344b49b86c5e5cf.tar.bz2
Adding console class
Diffstat (limited to 'lib/keyringer/console.rb')
-rw-r--r--lib/keyringer/console.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/keyringer/console.rb b/lib/keyringer/console.rb
new file mode 100644
index 0000000..08be3be
--- /dev/null
+++ b/lib/keyringer/console.rb
@@ -0,0 +1,29 @@
+#!/usr/bin/env ruby
+#
+# Keyringer secret management system.
+#
+# Copyright (C) 2011 Keyringer Development Team.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+module Keyringer
+ require 'singleton'
+
+ class Console
+ include Singleton
+ def initialize
+ end
+ end
+end