Skip to content

Instantly share code, notes, and snippets.

@iwinux
Created December 28, 2011 18:38

Revisions

  1. iwinux revised this gist Dec 28, 2011. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions gistfile1.rb
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    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
  2. iwinux created this gist Dec 28, 2011.
    11 changes: 11 additions & 0 deletions gistfile1.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    def compile_asset?(path)
    if File.basename(path) =~ /^[^_].*\.\w+$/
    puts "Compiling: #{path}"
    true
    else
    puts "Ignoring: #{path}"
    false
    end
    end

    config.assets.precompile = [ method(:compile_asset?).to_proc ]