Created
April 13, 2011 20:59
-
-
Save seven1m/918402 to your computer and use it in GitHub Desktop.
SASS with Jammit
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
# hack to auto compile sass when Jammit runs in Dev/Test mode | |
require 'haml/util' | |
require 'sass/engine' | |
module Jammit | |
module Helper | |
SASS_TIMESTAMPS = {} | |
def include_stylesheets_with_sass(*packages) | |
unless Rails.env.production? | |
paths = Dir[Rails.root.join('public/stylesheets/*.scss')].select do |path| | |
next if path =~ %r{/_[^/]+$} # skip partials | |
t = File.mtime(path) | |
if SASS_TIMESTAMPS[path] == t | |
false | |
else | |
SASS_TIMESTAMPS[path] = t | |
end | |
end | |
paths.each do |path| | |
Rails.logger.info("Compiling #{path} with SASS.") | |
engine = Sass::Engine.new( | |
File.read(path), | |
:load_paths => [Rails.root.join('public/stylesheets')], | |
:cache => false, | |
:syntax => :scss | |
) | |
File.open(path.sub(/scss$/, 'css'), 'w') { |f| f.write(engine.render) } | |
end | |
end | |
include_stylesheets_without_sass(*packages) | |
end | |
alias_method_chain :include_stylesheets, :sass | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment