I'm running ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.4.0] on my macbook.
Yet, when I attempt to use "new style" hashes such as:
stylesheet_link_tag "application", media: "all"
I get an error that reads "unexpected: expecting )"
I can fix this issue by replacing with the "old style" hashrockets:
stylesheet_link_tag "application", :media => "all"
I'm trying to figure out why rails isn't allowing the new style of ruby hashes. Any help would be greatly appreciated.