Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cpan::uploader(3pm) [debian man page]

CPAN::Uploader(3pm)					User Contributed Perl Documentation				       CPAN::Uploader(3pm)

NAME
CPAN::Uploader - upload things to the CPAN VERSION
version 0.103001 METHODS
upload_file CPAN::Uploader->upload_file($file, \%arg); $uploader->upload_file($file); Valid arguments are: user - (required) your CPAN / PAUSE id password - (required) your CPAN / PAUSE password subdir - the directory (under your home directory) to upload to http_proxy - uri of the http proxy to use upload_uri - uri of the upload handler; usually the default (PAUSE) is right debug - if set to true, spew lots more debugging output This method attempts to actually upload the named file to the CPAN. It will raise an exception on error. new my $uploader = CPAN::Uploader->new(\%arg); This method returns a new uploader. You probably don't need to worry about this method. Valid arguments are the same as those to "upload_file". read_config_file my $config = CPAN::Uploader->read_config_file( $filename ); This reads the config file and returns a hashref of its contents that can be used as configuration for CPAN::Uploader. If no filename is given, it looks for .pause in the user's home directory (from the env var "HOME", or the current directory if "HOME" isn't set). log $uploader->log($message); This method logs the given string. The default behavior is to print it to the screen. The message should not end in a newline, as one will be added as needed. log_debug This method behaves like "log", but only logs the message if the CPAN::Uploader is in debug mode. ORIGIN
This code is mostly derived from "cpan-upload-http" by Brad Fitzpatrick, which in turn was based on "cpan-upload" by Neil Bowers. I (rjbs) didn't want to have to use a "system" call to run either of those, so I refactored the code into this module. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-26 CPAN::Uploader(3pm)

Check Out this Related Man Page

Dist::Zilla::Prereqs(3pm)				User Contributed Perl Documentation				 Dist::Zilla::Prereqs(3pm)

NAME
Dist::Zilla::Prereqs - the prerequisites of a Dist::Zilla distribution VERSION
version 4.300020 DESCRIPTION
Dist::Zilla::Prereqs is a subcomponent of Dist::Zilla. The "prereqs" attribute on your Dist::Zilla object is a Dist::Zilla::Prereqs object, and is responsible for keeping track of the distribution's prerequisites. In fact, a Dist::Zilla::Prereqs object is just a thin layer over a CPAN::Meta::Prereqs object, stored in the "cpan_meta_prereqs" attribute. Almost everything this object does is proxied to the CPAN::Meta::Prereqs object, so you should really read how that works. Dist::Zilla::Prereqs proxies the following methods to the CPAN::Meta::Prereqs object: o finalize o is_finalized o requirements_for o as_string_hash METHODS
register_prereqs $prereqs->register_prereqs(%prereqs); $prereqs->register_prereqs(\%arg, %prereqs); This method adds new minimums to the prereqs object. If a hashref is the first arg, it may have entries for "phase" and "type" to indicate what kind of prereqs are being registered. (For more information on phase and type, see CPAN::Meta::Spec.) For example, you might say: $prereqs->register_prereqs( { phase => 'test', type => 'recommends' }, 'Test::Foo' => '1.23', 'XML::YZZY' => '2.01', ); If not given, phase and type default to runtime and requires, respectively. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-21 Dist::Zilla::Prereqs(3pm)
Man Page