Created
December 28, 2011 18:38
-
-
Save iwinux/1529093 to your computer and use it in GitHub Desktop.
config.assets.precompile
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 compile_asset?(path) | |
# ignores any filename that begins with '_' (e.g. sass partials) | |
# all other css/js/sass/image files are processed | |
if File.basename(path) =~ /^[^_].*\.\w+$/ | |
puts "Compiling: #{path}" | |
true | |
else | |
puts "Ignoring: #{path}" | |
false | |
end | |
end | |
config.assets.precompile = [ method(:compile_asset?).to_proc ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! 👏