aboutsummaryrefslogtreecommitdiff
path: root/lib/backend/parse_config.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-01 11:26:13 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-02-01 11:26:13 -0200
commit06675ebe0a69f1b3ae9b9d9fdfdeedf6392c40cf (patch)
treedf8c1219e8272cb7864b80688b5c00d411f5b19d /lib/backend/parse_config.rb
parentb25de691c1b282bd498a62ded3257dda92d1d423 (diff)
downloadkeyringer-06675ebe0a69f1b3ae9b9d9fdfdeedf6392c40cf.tar.gz
keyringer-06675ebe0a69f1b3ae9b9d9fdfdeedf6392c40cf.tar.bz2
Loading and checking user configuration
Diffstat (limited to 'lib/backend/parse_config.rb')
-rw-r--r--lib/backend/parse_config.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/backend/parse_config.rb b/lib/backend/parse_config.rb
new file mode 100644
index 0000000..c879cb5
--- /dev/null
+++ b/lib/backend/parse_config.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 Backend
+ # A wrapper around ParseConfig
+ def self.parse_config(config)
+ ParseConfig.new(config)
+ end
+end