Created
April 19, 2013 12:59
-
-
Save gpakosz/5420177 to your computer and use it in GitHub Desktop.
Better yet hacky Compass / nanoc integration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def compass_sass_engine_options | |
fail "configuring Compass with 'relative_assets = true' doesn't make much sense in the context of nanoc" if Compass.configuration.relative_assets? | |
options = Compass.sass_engine_options | |
options[:load_paths].each do |x| | |
class << x | |
alias _inspect inspect | |
def inspect | |
_inspect.gsub(/:0x\h+/, '') | |
end | |
end | |
end | |
options | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nanoc's rules memory is based on inspect however
Compass.sass_engine_options
instantiates different importers at each invocation, see https://github.com/chriseppstein/compass/blob/stable/lib/compass/configuration/adapters.rb#L70-L72This makes Nanoc believe Rules file has changed since Compass/Sass filtered items have last been compiled.
Raping
#inspect
method on those instances ofSass::Importers::Filesystem
andCompass::SpriteImporter
prevents the objects' address from appearing in the string returned by#inspect
and then Nanoc stops believing the Rules file has changed in between compiles. Duh!