lucasefe / themes_for_rails

Theme Support for Rails 3
This very same page :)
MIT License
308 stars 102 forks source link

Sass compilation stopped working #61

Closed rvrm closed 12 years ago

rvrm commented 12 years ago

The theme's stylesheet dir has the regular "sass" sub directory, yet the .sass file therein is not compiled to css. The sass gem is installed. What might be missing?

lucasefe commented 12 years ago

Did you upgraded an existing app? Or was it a new one? Are you using the Assets pipeline?

If you are using tfr with the assets pipeline, you should have your css files named file.css.sass in order to get file.css, alright?

I need more information in order to give you any useful hand.

rvrm commented 12 years ago

Pinned down the error to this line in my application.rb: require 'bootstrap-sass' This prevents my theme's Sass-file from being compiled.

lucasefe commented 12 years ago

Do it like this:

@import "bootstrap-sass"

Maybe this works better. In any case, this is not related to themes_for_rails, IMO.