aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-01-29 19:57:16 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-01-29 19:57:16 -0200
commit3625a33af33b5b44dcc9ec5b9abb87f9bea079e6 (patch)
treea8d1aac93aeb91b66ffbec4b0f353c6c70145f73
parent4987cf64fcfd6c417c06a3f939182b1052fe57c9 (diff)
downloadkeyringer-3625a33af33b5b44dcc9ec5b9abb87f9bea079e6.tar.gz
keyringer-3625a33af33b5b44dcc9ec5b9abb87f9bea079e6.tar.bz2
Adding interface checker skeleton
-rw-r--r--lib/keyringer/checker.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/keyringer/checker.rb b/lib/keyringer/checker.rb
new file mode 100644
index 0000000..3feb98b
--- /dev/null
+++ b/lib/keyringer/checker.rb
@@ -0,0 +1,26 @@
+#!/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
+ class Checker
+ def initialize
+ end
+ end
+end