summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRyan Davis <ryand@zenspider.com>2016-10-07 16:23:29 -0800
committerRyan Davis <ryand@zenspider.com>2016-10-07 16:23:29 -0800
commit5cbb53e665c8dd9d30505a23a899d91adab51e1b (patch)
tree4edd4327e9506770eedb30f8d8ce8272b6a01465 /lib
parentdb43f8c59cf6d2c479dc64be7f95b2dd9dd6ec07 (diff)
downloadhoe-5cbb53e665c8dd9d30505a23a899d91adab51e1b.tar.gz
- Add noop clobber_docs and clobber_package tasks in case they are disabled.
[git-p4: depot-paths = "//src/hoe/dev/": change = 10876]
Diffstat (limited to 'lib')
-rw-r--r--lib/hoe/clean.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/hoe/clean.rb b/lib/hoe/clean.rb
index 32401db..c59be5b 100644
--- a/lib/hoe/clean.rb
+++ b/lib/hoe/clean.rb
@@ -23,6 +23,9 @@ module Hoe::Clean
# Define tasks for plugin.
def define_clean_tasks
+ task :clobber_docs # no-op, just in case
+ task :clobber_package # no-op, just in case
+
desc "Clean up all the extras."
task :clean => [ :clobber_docs, :clobber_package ] do
clean_globs.each do |pattern|