/ Published in: Ruby
URL: http://martinfowler.com/articles/rake.html#BuiltInCleaning
If you don't see a particular extension in the CLEAN list, test before you add it. Common temporary file extensions like ~ are cleaned by default.
Expand |
Embed | Plain Text
require 'rake/clean' CLEAN.include "**/*\#", "**/*\.aux", "**/*\.rid" CLOBBER.include "log/**/*.log", "log/**/*.yml", "log/**/*.html", "log/**/*.txt", "log/**/*.xml"
You need to login to post a comment.
