Skip to content

Instantly share code, notes, and snippets.

@igor47
Created July 15, 2013 02:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save igor47/5997028 to your computer and use it in GitHub Desktop.
Save igor47/5997028 to your computer and use it in GitHub Desktop.
a recursive to_hash for chef 11; also handles arrays inside the hash.
class Chef
class Node
class ImmutableMash
def to_hash
h = {}
self.each do |k,v|
if v.respond_to?('to_hash')
h[k] = v.to_hash
elsif v.respond_to?('each')
h[k] = []
v.each do |i|
if i.respond_to?('to_hash')
h[k].push(i.to_hash)
else
h[k].push(i)
end
end
else
h[k] = v
end
end
return h
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment