param values are HashWithIndifferentAccess?

Ruby has an intersting problem with accessing Hashes with Symbols vs Strings. Right now Symbols and Strings are in fact two different objects. Rails took an effort to eliminate this disparity through HashWIthIndiferentAccess, which will take :key or ‘key’ and make sure it points to the same value.

Rails 1.9 now includes the fix:

:symbol.is_a? String => true

http://redhanded.hobix.com/inspect/SymbolIs_aString.html

Hope that helps.

Jason

Heh, yeah, Ruby 1.9, and I realize now that I didn’t actually answer the question, sorry about that.

Jason