I'm learning Ruby on Rails (sorry for the newb question, I couldn't find an answer on stackoverflow), and I am having an issue with my app using the stylesheet that was assigned to the application.
I put a simple css style (A colored body tag) into my public/stylesheets directory called "application.css"
in my "app" I have the stylesheet called via: "<%= stylesheet_link_tag "application" %>"
When I reload my page (which has no body css style specified in it, only pure simple html), I see no change. What am I doing wrong?
I've tried to reset the server, I've inspected the code of the rendered page and see nothing glaring... What am I missing?
The only ruby on rails warning that I get when the page opens is "Warn: could not determine content-length of the response or set Response#chunked = true", which seems to be ignorable --> What does "WARN Could not determine content-length of response body." mean and how to I get rid of it?
thanks