Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Dist::Zilla::Plugin::PkgVersion - add a $VERSION to your packages VERSION
version 4.300020 SYNOPSIS
in dist.ini [PkgVersion] DESCRIPTION
This plugin will add lines like the following to each package in each Perl module or program (more or less) within the distribution: { $MyModule::VERSION = 0.001; } ...where 0.001 is the version of the dist, and MyModule is the name of the package being given a version. (In other words, it always uses fully-qualified names to assign versions.) It will skip any package declaration that includes a newline between the "package" keyword and the package name, like: package Foo::Bar; This sort of declaration is also ignored by the CPAN toolchain, and is typically used when doing monkey patching or other tricky things. SEE ALSO
Core Dist::Zilla plugins: PodVersion, AutoVersion, NextRelease. Other Dist::Zilla plugins: OurPkgVersion inserts version numbers using "our $VERSION = '...';" and without changing line numbers 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::PkgVersion(3pm)

Check Out this Related Man Page

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

NAME
Dist::Zilla::Plugin::Git - update your git repository after release VERSION
version 1.121820 DESCRIPTION
This set of plugins for Dist::Zilla can do interesting things for module authors using git to track their work. The following plugins are provided in this distribution: o Dist::Zilla::Plugin::Git::Check o Dist::Zilla::Plugin::Git::Commit o Dist::Zilla::Plugin::Git::CommitBuild o Dist::Zilla::Plugin::Git::Init o Dist::Zilla::Plugin::Git::NextVersion o Dist::Zilla::Plugin::Git::Push o Dist::Zilla::Plugin::Git::Tag A Dist::Zilla::PluginBundle::Git bundle is also provided for your convenience, check its documentation to see which plugins it will load. SEE ALSO
You can look for information on this module at: o Search CPAN http://search.cpan.org/dist/Dist-Zilla-Plugin-Git <http://search.cpan.org/dist/Dist-Zilla-Plugin-Git> o See open / report bugs http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-Plugin-Git <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dist-Zilla-Plugin-Git> o Mailing-list (same as Dist::Zilla) <http://www.listbox.com/subscribe/?list_id=139292> o Git repository http://github.com/jquelin/dist-zilla-plugin-git <http://github.com/jquelin/dist-zilla-plugin-git> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Dist-Zilla-Plugin-Git <http://annocpan.org/dist/Dist-Zilla-Plugin-Git> o CPAN Ratings http://cpanratings.perl.org/d/Dist-Zilla-Plugin-Git <http://cpanratings.perl.org/d/Dist-Zilla-Plugin-Git> AUTHOR
Jerome Quelin COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Jerome Quelin. 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-30 Dist::Zilla::Plugin::Git(3pm)
Man Page

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding consecutive numbers in version names on a txt file

Hi all. I have a directory which contains files that can be versioned. All the files are named according to a pattern like this: TEXTSTRING1-001.EXTENSION TEXTSTRING2-001.EXTENSION TEXTSTRING3-001.EXTENSION ... TEXTSTRINGn-001.EXTENSION If a file is versioned, a file called ... (10 Replies)
Discussion started by: fox1212
10 Replies

2. Programming

Working with extremely large numbers in C

Hi All, I am just curious, not programming anything of my own. I know there are libraries like gmp which does all such things. But I really need to know HOW they do all such things i.e. working with extremely large unimaginable numbers which are beyond the integer limit. They can do add,... (1 Reply)
Discussion started by: shoaibjameel123
1 Replies

3. Shell Programming and Scripting

Extracting substring

Hi, I have string in variable like '/u/dolfin/in/DOLFIN.PRL_100.OIB.TLU.001.D20110520.T040010' and i want to conevrt this string into only "DOLFIN.PRL_100.OIB.TLU.001.D20110520.T040010" (i.e file name). Is there any command to extracting string in some part ?(rather than whole path)? ... (5 Replies)
Discussion started by: shyamu544
5 Replies

4. Shell Programming and Scripting

Join lines with the same start string

I have the text like: DN11-001 Thats the first line which needs to be DN11-001 joined with the second line and also to DN11-001 the third line as they all begin with the same DN11-001 document number. DN11-002 The number of lines differ DN11-002 among the documents. DN11-005 It can also be... (10 Replies)
Discussion started by: andrejm
10 Replies

5. Programming

RegEx find numbers above 25000

Hello, I am using the Sublime Plugin LogHighlight. I can use RegEx there to highlight some lines in sublime. Now I need to find every line, that has a number of above 25000. the lines look like this: smart_sdl.result: 8947 smart_sdm.result: 8947 smart_sdn.result: 25000 Currently I am... (3 Replies)
Discussion started by: blend_in
3 Replies