class SaltHiera::Configuration

Public Class Methods

get(key) click to toggle source
# File lib/salt_hiera/configuration.rb, line 9
def self.get key
  @@confighash ||= {}
  @@confighash[key]
end
set(key, value) click to toggle source
# File lib/salt_hiera/configuration.rb, line 4
def self.set key, value
  @@confighash ||= {}
  @@confighash[key] = value
end