summaryrefslogtreecommitdiff
path: root/lib/config.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-09-11 12:35:41 +0200
committerAzul <azul@riseup.net>2012-09-11 12:35:41 +0200
commitc331d70638c35d807128e39a9958cab5ba4eeb25 (patch)
tree329667af3f1624fbe49dd6260dd5c032f64fd7ba /lib/config.rb
parenta52f357906ed5f54b7a3b64e54be79db83c58e7c (diff)
added config class
Diffstat (limited to 'lib/config.rb')
-rw-r--r--lib/config.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/config.rb b/lib/config.rb
new file mode 100644
index 0000000..dded140
--- /dev/null
+++ b/lib/config.rb
@@ -0,0 +1,18 @@
+require 'yaml'
+
+module LeapCA
+ class Config
+ def initialize(filename)
+ file = File.new(filename, 'r')
+ @hash = YAML::load(file)
+ end
+
+ def server
+ @hash['server']
+ end
+
+ def database
+ @hash['database']
+ end
+ end
+end