Skip to content

Instantly share code, notes, and snippets.

View jjn1056's full-sized avatar

John Napiorkowski jjn1056

View GitHub Profile
use strict;
use warnings;
use HTML::Zoom;
my $root = HTML::Zoom
->from_html(<<HTML);
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
#!/usr/bin/env perl
use strict;
use warnings;
use File::Spec;
use inc::Module::Install 1.00;
all_from 'lib/App/local/lib/helper.pm';
requires 'File::Spec';
#!/usr/bin/env perl
use strict;
use warnings;
use File::Spec;
use inc::Module::Install 1.00;
use Module::Install::Repository 0.06;
use Module::Install::AutoManifest 0.003;
use Module::Install::ReadmeMarkdownFromPod 0.003;
use strict;
use warnings;
use HTML::Zoom;
my $root = HTML::Zoom
->from_html(<<MAIN);
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Module Name Dependents Notes
Module::Install::TestBase 84 probably via of Test::Base
Module::Install::Catalyst 23 via Catalyst-Devel
Module::Install::AuthorTests 12
Module::Install::Repository 7
Module::Install::ExtraTests 3
Module::Install::GithubMeta 2
Module::Install::CheckLib 2
Module::Install::AssertOS 2
Module::Install::NoAutomatedTesting 2
#!/usr/bin/env perl
use strict;
use warnings;
use inc::Module::Install 1.00;
use Module::Install::Repository 0.06;
use Module::Install::AutoManifest 0.003;
use Module::Install::ReadmeMarkdownFromPod 0.003;
use Module::Install::Homepage 0.01;
use Module::Install::AutoLicense 0.08;
diff --git a/lib/Module/Install/Catalyst.pm b/lib/Module/Install/Catalyst.pm
index 5d45b69..7d85ece 100644
--- a/lib/Module/Install/Catalyst.pm
+++ b/lib/Module/Install/Catalyst.pm
@@ -8,7 +8,7 @@ require Module::Install::Base;
use File::Find;
use FindBin;
-use File::Copy::Recursive 'rcopy';
+use File::Copy::Recursive ();
diff --git a/lib/Module/Install/Catalyst.pm b/lib/Module/Install/Catalyst.pm
index 5d45b69..33d2cd5 100644
--- a/lib/Module/Install/Catalyst.pm
+++ b/lib/Module/Install/Catalyst.pm
@@ -8,7 +8,7 @@ require Module::Install::Base;
use File::Find;
use FindBin;
-use File::Copy::Recursive 'rcopy';
+use File::Copy::Recursive;
{
package MyApp::Request::PSGI;
use strict;
use base qw(HTML::Mason::Request::PSGI);
sub session {
my $self = shift;
$self->cgi_request->query->env->{'psgix.session'};
}
@jjn1056
jjn1056 / Popular Module::Install plugins
Created October 15, 2010 13:34
quick review of how popular certain Module::Install plugins are