I am getting the following error for several of my assets in my Rails app.
ActionController::RoutingError (No route matches [GET] \"/assets/jquery-1.10.2.mi
It's related to the new source map support that started shipping in jQuery 1.9RC1.
You can either follow the directions from the 1.9RC1 link and add the compressed, uncompressed, and map files to your vendor/assets directory or remove the source map line from the uncompressed file (it looks like //@ sourceMappingURL=jquery-1.10.2.min.map).
Hope that helps.