I manually added assets/images directory in a rails 3.2 app and added the image background.png . When referring to the image from css
background: url("assets/background.png") no-repeat;
I am getting a 404 , however assets/stylesheets and assets/javascripts are showing up.
**UPDATE
it appears as if I revert back to explicitly calling the stylesheet ie
<%=stylesheet_link_tag "home.css"%>
instead of
<%=stylesheet_link_tag "application" %>
The background image reders correctly