This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add INOUT to control both ways at the same time.
[perl5.git] / lib / CPAN / Nox.pm
CommitLineData
36263cb3 1package CPAN::Nox;
911a92db
GS
2use strict;
3use vars qw($VERSION @EXPORT);
36263cb3 4
911a92db
GS
5BEGIN{
6 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7}
5f05dabc 8
911a92db 9use base 'Exporter';
5f05dabc 10use CPAN;
11
76fbd8c4 12$VERSION = "1.00_00";
55e314ee
A
13$CPAN::META->has_inst('MD5','no');
14$CPAN::META->has_inst('LWP','no');
09d9d230 15$CPAN::META->has_inst('Compress::Zlib','no');
5f05dabc 16@EXPORT = @CPAN::EXPORT;
17
18*AUTOLOAD = \&CPAN::AUTOLOAD;
19
911a92db
GS
20__END__
21
5f05dabc 22=head1 NAME
23
24CPAN::Nox - Wrapper around CPAN.pm without using any XS module
25
26=head1 SYNOPSIS
27
28Interactive mode:
29
30 perl -MCPAN::Nox -e shell;
31
32=head1 DESCRIPTION
33
34This package has the same functionality as CPAN.pm, but tries to
022735b4
JH
35prevent the usage of compiled extensions during its own
36execution. Its primary purpose is a rescue in case you upgraded perl
5f05dabc 37and broke binary compatibility somehow.
38
39=head1 SEE ALSO
40
41CPAN(3)
42
43=cut
44