I'm having a strange routing error in my Rails app. I have a controller called file_ops
and I'm using the REST url philosophy. I can access index
and new
just fine, I even have a static route set to an action named fileScan
. But if I try to go to the show
action either by typing it in or by link I get:
ActionController::RoutingError (No route matches [GET] "/assets")
So far this seems to be the only action that this happens to. I have nothing non-standard in my settings except the static route mentioned above. I've searched around but the other issues people are having seem to be pointing to a file in /assests
the doesn't exist. Mine seems to be referencing the folder itself.