我正在运行带有 Rails 3.2.3 的 JRuby 版本 1.6.7,当我启动我的 rails 服务器时,rails s
我收到以下错误:
/config/routes.rb:8: syntax error, unexpected ':'
match '/about', to: 'pages#about'
但是,如果我更改为,match '/about' :to => 'pages#about'
我不会收到错误消息。由于使用的 Rails 版本支持这种速记格式,请问有什么问题,我该如何解决?