Skip to content

Instantly share code, notes, and snippets.

@ivorpad
Last active August 29, 2015 14:24
Show Gist options
  • Save ivorpad/72161de1d3fc00148670 to your computer and use it in GitHub Desktop.
Save ivorpad/72161de1d3fc00148670 to your computer and use it in GitHub Desktop.
Hash To Array: Bloc.io
def hash_to_array(hash = {})
ary = []
hash.each do |k, v|
ary << "#{k} is #{v}"
end
ary
end
hash_to_array({name: "Ivor"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment