From a23ee4f123893bc4576612e4bbdbece5cb3a9f0c Mon Sep 17 00:00:00 2001 From: Lars Kanis <lars@greiz-reinsdorf.de> Date: Fri, 12 Jun 2015 21:17:21 +0200 Subject: [PATCH] Add tmp dir to clean task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b9527f0..7617fb7 100755 --- a/Rakefile +++ b/Rakefile @@ -47,7 +47,7 @@ SWIG_MODULES = { hoe = Hoe.spec "fxruby" do # ... project specific data ... self.blog_categories = %w{FXRuby} - self.clean_globs = [".config", "ext/fox16_c/Makefile", "ext/fox16_c/*.o", "ext/fox16_c/*.bundle", "ext/fox16_c/mkmf.log", "ext/fox16_c/conftest.dSYM", "ext/fox16_c/include/swigrubyrun.h", "ext/fox16_c/librb.c", "ext/fox16_c/include/inlinestubs.h", "ext/fox16_c/*_wrap.cpp"] + self.clean_globs = [".config", "ext/fox16_c/Makefile", "ext/fox16_c/*.o", "ext/fox16_c/*.bundle", "ext/fox16_c/mkmf.log", "ext/fox16_c/conftest.dSYM", "ext/fox16_c/include/swigrubyrun.h", "ext/fox16_c/librb.c", "ext/fox16_c/include/inlinestubs.h", "ext/fox16_c/*_wrap.cpp", "tmp"] developer("Lyle Johnson", "lyle@lylejohnson.name") developer("Lars Kanis", "kanis@comcard.de") self.extra_rdoc_files = ["rdoc-sources", File.join("rdoc-sources", "README.rdoc")] -- GitLab