正如标题所述,我的路线文件中有以下内容:
root to: 'assets#index'
resources :assets do
member do
get :download
end
end
然而,我的输出rake routes
和访问rails/info/routes
都很简单:
Prefix Verb URI Pattern Controller#Action
root GET / assets#index
然而,在我看来,这些路线运行良好。
我也尝试过,bundle exec
并且按照其他一些帖子的建议,我已经更新到最新版本的 bundle。它仍然适用于我的 Rails 3 应用程序。