module Configuration

Public Class Methods

load(config_path) click to toggle source
# File lib/masker/configuration.rb, line 4
def self.load(config_path)
  fail "File not found: #{config_path}" unless File.exist?(config_path)
  YAML.load_file(config_path)
end