Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想解决这个错误,请任何人,这个错误是关于 session_store.rb 文件中的语法错误,在粘贴的附件中:
http://pastie.org/2681282
看起来您正在尝试key: value在 Ruby 1.8 中使用 Ruby 1.9 风格的哈希语法 ( )。升级到 Ruby 1.9 或更改您的代码以使用 Ruby 1.8 中支持的 Hash 语法,即:key => '_manager_session'.
key: value
:key => '_manager_session'
在这里查看我的答案: Mac OSX Snow Leopard - Rails 错误:Session_store.rb