How to use ActiveRecord::OrderedHash

Ruby 1.8 doesn't retain the order of objects inserted in to a hash, but with ActiveSupport::OrderedHash you can do this: ```ruby a=ActiveSupport::OrderedHash[:one, 1, :two, 2] ``` which gives you: ```ruby => #1, :two=>2}> ```