RailsCasts Pro episodes are now free!

Learn more or hide this

Geoff Garside's Profile

GitHub User: geoffgarside

Site: http://geoffgarside.co.uk/

Comments by Geoff Garside

Avatar

Very nice screencast, I like the suggestion of using SCSS to handle the importing of additional SCSS files. Its worth noting though that Sprockets won't detect changes to the dependent stylesheets when you're using @import so you will probably want to add

*= depends_on "projects"

to your application.css.scss so that changes to that file will rebuild the application.css file. Hopefully once things have landed properly an SCSS @import will handle this.