<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>bin/acme_returnvalue_makesite.pl</filename>
    </added>
    <added>
      <filename>lib/Acme/ReturnValue/MakeSite.pm</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -33,8 +33,6 @@ has 'file' =&gt; (is=&gt;'ro',isa=&gt;'Str');
 has 'cpan' =&gt; (is=&gt;'ro',isa=&gt;'Str');
 has 'dump_to' =&gt; (is=&gt;'ro',isa=&gt;'Str',default=&gt;'returnvalues');
 
-has 'output' =&gt; (is=&gt;'ro',isa=&gt;'Str',default=&gt;'dump');
-
 
 $|=1;
 
@@ -86,22 +84,15 @@ sub run {
         $self-&gt;in_dir('.');
     }
 
-    given ($self-&gt;output) {
-        when ('dump') {
-            print Dumper $self-&gt;interesting;
-        }
-        when ('report') {
-            my $interesting=$self-&gt;interesting;
-            if (@$interesting &gt; 0) {
-                foreach my $cool (@$interesting) {
-                    print $cool-&gt;{package} .': '.$cool-&gt;{value} .&quot;\n&quot;;
-                }
-            }
-            else {
-                print &quot;boring!\n&quot;;
-            }
+    my $interesting=$self-&gt;interesting;
+    if (@$interesting &gt; 0) {
+        foreach my $cool (@$interesting) {
+            print $cool-&gt;{package} .': '.$cool-&gt;{value} .&quot;\n&quot;;
         }
     }
+    else {
+        print &quot;boring!\n&quot;;
+    }
 }
 
 =head3 waste_some_cycles
@@ -162,7 +153,7 @@ sub waste_some_cycles {
     $rv=~s/^return //gi;
 
     return if $rv eq 1;
-say &quot;FOUND SOMETHING&quot;;
+    
     my $data = {
         'file'    =&gt; $file,
         'package' =&gt; $this_package,
@@ -228,8 +219,6 @@ sub in_CPAN {
         };
         if ($@) {
             print $@;
-            $data-&gt;{error}=$@;
-            push (@{$self-&gt;failed},$data);
         }
         rmtree($dir);
     }
@@ -323,28 +312,29 @@ Will print directly to STDOUT, because I'm lazy ATM..
 =cut
 
 sub generate_report_from_dump {
-    my ($self,$in)=@_;
+    my ($self)=@_;
 
     my @interesting;
-    my $dir = Path::Class::Dir-&gt;new($in); 
+    my $dir = Path::Class::Dir-&gt;new($self-&gt;in); 
+    
+    my %cool_dists;
+    my %bad_dists;
+    my %cool_rvs;
+    #my %authors;
+
     while (my $file=$dir-&gt;next) {
-        next unless $file=~/^(.*)\.dump$/;
-        my $stat = $file-&gt;stat;
-        
-        my $size=$stat-&gt;size || 0;
-        unless ($size) {
-            die $file;
-        }
-        next if $size &gt; 20000;
-        my $dist=$1;
+        next unless $file=~/^(?&lt;dist&gt;.*)\.(?&lt;type&gt;dump|bad)$/;
+        my $dist=$+{dist};
+        my $type=$+{type};
     
         my $VAR1;
         eval $file-&gt;slurp;
-        my $interesting=$VAR1-&gt;interesting;
-        next unless @$interesting &gt; 0;
-        push(@interesting,$interesting);
+        my $data=$VAR1;
+        say $data-&gt;{PPI};
     }
 
+    if (1==2) {
+
     my $now=scalar localtime;
     print &lt;&lt;&quot;EOHTML&quot;;
 &lt;html&gt;
@@ -373,7 +363,7 @@ EOHTML
 
     print &quot;&lt;/dl&gt;&lt;/body&gt;&lt;/html&gt;&quot;;
 
-
+}
 }
 
 </diff>
      <filename>lib/Acme/ReturnValue.pm</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>33bfeec8c2928484d9dbb1b15a7a6a8b61ffe3ff</id>
    </parent>
  </parents>
  <author>
    <name>Thomas Klausner</name>
    <email>domm@cpan.org</email>
  </author>
  <url>http://github.com/domm/Acme-ReturnValue/commit/53b4b2c4a8a4d809d7daebe5b0f7508532e02337</url>
  <id>53b4b2c4a8a4d809d7daebe5b0f7508532e02337</id>
  <committed-date>2009-05-09T12:04:49-07:00</committed-date>
  <authored-date>2009-05-09T12:04:49-07:00</authored-date>
  <message>aded MakeSite etc</message>
  <tree>e107d4c97b963c64671d4615aa8d296e8b0dc5f7</tree>
  <committer>
    <name>Thomas Klausner</name>
    <email>domm@cpan.org</email>
  </committer>
</commit>
