Initial Commit
This commit is contained in:
21
database/perl/vendor/lib/CPAN/Mini/Portable.pm
vendored
Normal file
21
database/perl/vendor/lib/CPAN/Mini/Portable.pm
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
package CPAN::Mini::Portable;
|
||||
|
||||
use 5.008;
|
||||
use strict;
|
||||
use warnings;
|
||||
use Portable ();
|
||||
use CPAN::Mini 0.575 ();
|
||||
|
||||
our $VERSION = '1.23';
|
||||
our @ISA = 'CPAN::Mini';
|
||||
|
||||
sub new {
|
||||
# Use the portable values as defaults,
|
||||
# completely ignoring any passed params
|
||||
my $minicpan = Portable->default->minicpan;
|
||||
|
||||
# Hand off to the parent class
|
||||
return $_[0]->SUPER::new( %$minicpan );
|
||||
}
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user