From: Matt S Trout <matthewt@hercule.scsys.co.uk>
Date: Sun, 5 Jul 2009 15:14:53 +0000 (+0100)
Subject: top level munging script
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aa75d10b017e1970b94d84861f30f4b0e66d91f9;p=engit%2FIron-Munger.git

top level munging script
---

diff --git a/scripts/munge b/scripts/munge
new file mode 100644
index 0000000..120c9a5
--- /dev/null
+++ b/scripts/munge
@@ -0,0 +1,16 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+use IronMunger;
+use File::Path qw(rmtree);
+use File::Copy::Recursive qw(dircopy);
+
+rmtree('output');
+dircopy('share','output');
+
+my $munger = IronMunger->load_from_plagger('csv');
+
+print $munger->debug_dump;
+
+$munger->save_monger_stats('output');