Skip to content

Instantly share code, notes, and snippets.

@mangar
Created December 17, 2008 19:53
Show Gist options
  • Save mangar/37192 to your computer and use it in GitHub Desktop.
Save mangar/37192 to your computer and use it in GitHub Desktop.
Order a Hash...
# CODE:
def order_hash hash
keys_ordered = Array.new
new_hash = Hash.new
hash.each_key { |k| new_hash[k.to_s] = hash[k] }
keys_ordered = new_hash.keys.sort
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment