Skip to content

Instantly share code, notes, and snippets.

@wedtm
Forked from iwinux/gist:1529093
Created May 17, 2013 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wedtm/5602254 to your computer and use it in GitHub Desktop.
Save wedtm/5602254 to your computer and use it in GitHub Desktop.
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