Quote (nuvo @ Sep 4 2016 09:31am)
Do you actually get .css generated at all? It should compile all app/assets/stylesheets/*.scss (and *.css too) into public/assets/application.css which you then load
You can try running scss manually, maybe there is some error preventing it from working. scss --watch --update app/assets/stylesheets/:public/assets/ (this will change eg. foo.scss to foo.css and foo.css.map. But it is just a test here)
im using rails 4.2.6 and all my scss files including application.css are in app/assets/stylesheets theres no css/scss in the public directory.
edit:
i think it might have something to do with this (app/views/layouts/application.html.erb):
Code
<!DOCTYPE html>
<html>
<head>
<title>Spblog</title>
<%= stylesheet_link_tag "defaults", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "defaults", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
im on windows so I cant use <%= stylesheet_link_tag "application", as i get an unkown property method error.
but im not 100% sure..
This post was edited by AkuuZ on Sep 4 2016 12:26pm