Method: Array#to_hash

Defined in:
lib/config_logic/core_ext/array.rb

#to_hashObject



11
12
13
# File 'lib/config_logic/core_ext/array.rb', line 11

def to_hash
  self.inject({}) { |h, (key, val)| h[key] = val; h }
end