module Construi::Config

Public Class Methods

load(content) click to toggle source
# File lib/construi/config.rb, line 182
def self.load(content)
  Global.new YAML.load(content)
end
load_file(path) click to toggle source
# File lib/construi/config.rb, line 186
def self.load_file(path)
  Global.new YAML.load_file(path)
end