I had the Compass / Haml / Sass combo working fine before and sometime up to
merb 1.1.0-pre. Now that I've upgraded to Merb 1.1.0, I've noticed that my
changes to sass files, eg master.sass, no longer get compiled. (The Haml
continues to render properly.)
in Gemfile, I have, as modified for the new bundler,
gem "haml"
gem "merb-haml"
gem "compass"
in init.rb, I have, as always,
Merb::Config.use do |c|
...
#Added to support the Compass SASS MetaFramework
c[:compass] = {
:stylesheets => 'app/stylesheets',
:compiled_stylesheets => 'public/stylesheets/compiled'
}
...
end
I've tried adding
Merb::Plugins.config[:sass] = { :template_location =>
Merb.root+'/app/stylesheets' }
above
Merb::BootLoader.after_app_loads do
to no avail.
TIA.
--
You received this message because you are subscribed to the Google Groups
"merb" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/merb?hl=en.