I use nested resources in my Ruby on Rails 4.0 application using the following routes:
resources :stories do resources :chapters end
After playing back with the form and the paths that I received, it all works, except for one permanent error, I canβt find out how to remove:
Started GET "/stories/1/chapters/jquery.min.map" for 192.168.202.1 at 2013-08-19 18:40:57 +0100 ActionController::RoutingError (No route matches [GET] "/stories/1/chapters/jquery.min.map"):
Since I looked at both the Application.html.erb layout and the corresponding internal layouts, I assume jquery-rails is trying to load this file, but it fails due to the attached resources.
source share