From ed95723fe8599c20eeebd228e1bb4f975ffefc23 Mon Sep 17 00:00:00 2001 From: Tomas Touceda Date: Wed, 16 Jul 2014 16:19:19 -0400 Subject: Remove unused code --- bundler/actions.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'bundler/actions.py') diff --git a/bundler/actions.py b/bundler/actions.py index df96c92..9b6b12a 100644 --- a/bundler/actions.py +++ b/bundler/actions.py @@ -689,3 +689,21 @@ class SignIt(Action): "Bitmask.app") print codesign("-s", identity, "--force", "--deep", "--verbose", main_app) print "Done" + + + +class RemoveUnused(Action): + def __init__(self, basedir, skip, do): + Action.__init__(self, "rmunused", basedir, skip, do) + + @skippable + def run(self): + print "Removing unused python code..." + test_dirs = find(self._basedir, "-name", "*test*").strip().splitlines() + for td in test_dirs: + rm("-rf", os.path.join(self._basedir, td)) + + twisted_used = ["aplication", "conch", "cred", "version", "internet", "mail"] + # twisted_files = find(self._basedir, "-name", "t + print "Done" + -- cgit v1.2.3