summaryrefslogtreecommitdiff
path: root/lib/config.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/config.rb')
-rw-r--r--lib/config.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/config.rb b/lib/config.rb
deleted file mode 100644
index dded140..0000000
--- a/lib/config.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-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