I put my css file into public/stylesheets directory (by the way, there was no stylesheets directory by default). From the layout in app/views I render it by
<%= stylesheet_link_tag "main" %>
When I view the page css doesn't appear to work(no changes comparing with clean html), in the html code I see this one:
<link href="/assets/main.css" media="screen" rel="stylesheet" type="text/css" />
I don't understand why are assets here instead of stylesheets and what am I doing wrong?