Module: Kokonfig::Objectifier

Defined in:
lib/kokonfig/objectifier.rb

Class Method Summary collapse

Class Method Details

.objectify(input) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/kokonfig/objectifier.rb', line 4

def self.objectify(input)
  result = input
  if input.is_a? Hash
    input.each do |key, value|
      input[key] = Kokonfig::Objectifier.objectify(value)
    end
    result = OpenStruct.new(input)
  elsif input.is_a? Array
    input.each_with_index do |value, index|
      input[index] = Kokonfig::Objectifier.objectify(value)
    end
  end
  result
end