Created
November 22, 2011 08:02
-
-
Save wycats/1385143 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
input "app/assets" | |
output "public" | |
# convert coffee files into JS files | |
matches "*.coffee" do | |
filter(CoffeeScriptFilter) do |file| | |
"#{file}.js" | |
end | |
end | |
# concatenate all js files into application.js, will include | |
# the coffeescript files in the previous step | |
matches "*.js" do | |
filter Rake::Pipeline::ConcatFilter, "application.js" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment