Skip to content

Instantly share code, notes, and snippets.

@5t111111
Created December 23, 2014 12:41
Show Gist options
  • Select an option

  • Save 5t111111/fd715cacfd492223ecab to your computer and use it in GitHub Desktop.

Select an option

Save 5t111111/fd715cacfd492223ecab to your computer and use it in GitHub Desktop.
def iterate(h, depth: 0)
h.each do |k,v|
value = v || k
puts "-" * depth + " " + k
if value.is_a?(Hash)
iterate(value, depth: depth + 1)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment