Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dist::zilla::plugin::uploadtocpan(3pm) [debian man page]

Dist::Zilla::Plugin::UploadToCPAN(3pm)			User Contributed Perl Documentation		    Dist::Zilla::Plugin::UploadToCPAN(3pm)

NAME
Dist::Zilla::Plugin::UploadToCPAN - upload the dist to CPAN VERSION
version 4.300020 SYNOPSIS
If loaded, this plugin will allow the release command to upload to the CPAN. DESCRIPTION
This plugin looks for configuration in your "dist.ini" or (more likely) "~/.dzil/config.ini": [%PAUSE] username = YOUR-PAUSE-ID password = YOUR-PAUSE-PASSWORD If this configuration does not exist, it can read the configuration from "~/.pause", in the same format that cpan-upload requires: user YOUR-PAUSE-ID password YOUR-PAUSE-PASSWORD If neither configuration exists, it will prompt you to enter your username and password during the BeforeRelease phase. Entering a blank username or password will abort the release. ATTRIBUTES
username This option supplies the user's PAUSE username. If not supplied, it will be looked for in the user's PAUSE configuration. password This option supplies the user's PAUSE password. If not supplied, it will be looked for in the user's PAUSE configuration. pause_cfg This is a hashref of defaults loaded from ~/.pause -- this attribute is subject to removal in future versions, as the config-loading behavior in CPAN::Uploader is improved. subdir If given, this specifies a subdirectory under the user's home directory to which to upload. Using this option is not recommended. upload_uri If given, this specifies an alternate URI for the PAUSE upload form. By default, the default supplied by CPAN::Uploader is used. Using this option is not recommended in most cases. 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::Plugin::UploadToCPAN(3pm)

Check Out this Related Man Page

Dist::Zilla::Plugin::FakeRelease(3pm)			User Contributed Perl Documentation		     Dist::Zilla::Plugin::FakeRelease(3pm)

NAME
Dist::Zilla::Plugin::FakeRelease - fake plugin to test release VERSION
version 4.300020 SYNOPSIS
[FakeRelease] user = CPANAUTHORID ; # optional. DESCRIPTION
This plugin is a Releaser that does nothing. It is directed to plugin authors, who may need a dumb release plugin to test their shiny plugin implementing BeforeRelease and AfterRelease. When this plugin does the release, it will just log a message and finish. If you set the environment variable "DZIL_FAKERELEASE_FAIL" to a true value, the plugin will die instead of doing nothing. This can be useful for authors wanting to test reliably that release failed. You can optionally provide the 'user' parameter, which defaults to 'AUTHORID', which will allow things that depend on this metadata ( Sometimes provided by UploadToCPAN ) to still work. ( For example: Dist::Zilla::Plugin::Twitter ) SEE ALSO
Core Dist::Zilla plugins: ConfirmRelease, UploadToCPAN. 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::Plugin::FakeRelease(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

system("PAUSE") Problem.....

Ok, here's the situation....I have this code... #include <iostream.h> #include <stdlib.h> int main() { cout << "\nBlah, and Blah\n\n"; system("PAUSE"); return 0; } Now, "system("PAUSE")" gets executed before "cout" does, and I have... (2 Replies)
Discussion started by: mbolthouse
2 Replies

2. Programming

Who is the current user

How could I get the username and password of user, who started this programm? (6 Replies)
Discussion started by: szzz
6 Replies

3. UNIX for Dummies Questions & Answers

Failed sending file

Hi, I'm suppose to upload a file to my company's client server. I used kftp grabber in my PCLinuxOS to do the file transfer. The client has given a username and password to upload the file in their server. When I log in to the server, I cannot access root or home directory, nor can I access... (1 Reply)
Discussion started by: anaigini45
1 Replies

4. Programming

Checking which arguments are supplied

I have written this C++ program and I am using getopt_long and want to chech when the user supplies the arguments so that I can put a default or otherwise. Currently I am using hasargv or Pc.get_string("key",s), Pc.get_real("key",s), etc to detect whether the user supplied a value. For... (3 Replies)
Discussion started by: kristinu
3 Replies