summaryrefslogtreecommitdiff
path: root/lib/config.rb
blob: dded140f32e036229ba3695f0790a4b46dbd6fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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