show/hide this revision's text 3 Rollback to Revision 1

Hashes in Ruby can't be sorted (at least not before 1.9)

This means that looping through a Hash won't necessarily yield the information in the right order for you. However, it's trivial to loop through Hashed data in a particular order by converting it to an Array first, and in fact calling the sort methods on a Hash will convert it into an Array for you:

>> { :a => 4, :b => 12, :c => 3, :d => 8 }.sort_by { |key, value| value }
=> [[:c, 3], [:a, 4], [:d, 8], [:b, 12]]

So in your case(in Ruby 1.8):

hsh.to_a.sort_by 

hsh.sort_by {|key, ratings| ratings[:rating] }
show/hide this revision's text 2 added specifics about 1.8

Hashes in Ruby can't be sorted (at least not before 1.9)

This means that looping through a Hash won't necessarily yield the information in the right order for you. However, it's trivial to loop through Hashed data in a particular order by converting it to an Array first, and in fact calling the sort methods on a Hash will convert it into an Array for you:

>> { :a => 4, :b => 12, :c => 3, :d => 8 }.sort_by { |key, value| value }
=> [[:c, 3], [:a, 4], [:d, 8], [:b, 12]]

So in your case (in Ruby 1.8):

hsh.sort_by 

hsh.to_a.sort_by {|key, ratings| ratings[:rating] }
show/hide this revision's text 1

Hashes in Ruby can't be sorted (at least not before 1.9)

This means that looping through a Hash won't necessarily yield the information in the right order for you. However, it's trivial to loop through Hashed data in a particular order by converting it to an Array first, and in fact calling the sort methods on a Hash will convert it into an Array for you:

>> { :a => 4, :b => 12, :c => 3, :d => 8 }.sort_by { |key, value| value }
=> [[:c, 3], [:a, 4], [:d, 8], [:b, 12]]

So in your case:

hsh.sort_by {|key, ratings| ratings[:rating] }