CPAN2RT
view release on metacpan or search on metacpan
lib/CPAN2RT.pm view on Meta::CPAN
use warnings;
our $VERSION = '0.03';
use Email::Address;
use List::Compare;
use CPAN::DistnameInfo;
use List::MoreUtils qw(uniq);
our $DEBUG = 0;
sub debug(&);
=head1 METHODS
=head2 new
Simple constructor that creates a hash based object and stores all
passed arguments inside it. Then L</init> is called.
=head3 options
lib/CPAN2RT.pm view on Meta::CPAN
}
sub skip_header {
my $self = shift;
my $fh = shift;
while ( my $str = <$fh> ) {
return if $str =~ /^\s*$/;
}
}
sub debug(&) {
return unless $DEBUG;
print STDERR map { /\n$/? $_ : $_."\n" } $_[0]->();
}
1;
package CPAN2RT::UsersSAXParser;
use base qw(XML::SAX::Base);
sub start_document {
( run in 0.622 second using v1.01-cache-2.11-cpan-65fba6d93b7 )