-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Add pkg
to Rake's CLOBBER FileList
#3676
Comments
It might be handy... can you elaborate on why you need to clobber pkg? I never do, and the only side effect seems to be ending up with old versions of the gem sitting in pkg... |
"need" is a bit strong. It's mostly just the urge to keep things tidy. And Of course, in keeping with rake's fine distinction of clean vs clobber, I So there's no particular reason why I have the compulsion for cleaning. But On Tue, May 26, 2015 at 3:36 PM, André Arko [email protected]
|
Yeah, seems reasonable. Send a PR? On Tue, May 26, 2015 at 12:42 PM, Jason Karns [email protected]
|
sure thing! On Tue, May 26, 2015 at 3:57 PM, André Arko [email protected]
|
include 'pkg/' in rake/clean's CLOBBER array closes #3676
Bundler's gem_tasks are quite helpful. But the first thing that needs added to a new gem's Rakefile is frequently
require 'rake/clean'
andCLOBBER.include 'pkg'
Since 'pkg' is hardcoded into the
build
task, might it also be handy to pre-populate theCLOBBER
FileList with 'pkg' as well?The text was updated successfully, but these errors were encountered: