What version of Ruby gained the new JSON-style hash notation? Is that a 1.9.3 feature?
Walter
Ruby 1.9 has this new hash notation (check Google for "ruby 1.9 new
hash notation").
For `rails new`, you can ask for the "old" hash notation with
[--old-style-hash] # Force using old style hash (:foo =>
'bar') on Ruby >= 1.9
You might run `rails new -h` to see all options (there are other
interesting options there).
HTH,
Peter