Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

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

NAME
Dist::Zilla::Plugin::AutoVersion - take care of numbering versions so you don't have to VERSION
version 4.300020 DESCRIPTION
This plugin automatically produces a version string, generally based on the current time. By default, it will be in the format: 1.yyDDDn ATTRIBUTES
major The "major" attribute is just an integer that is meant to store the major version number. If no value is specified in configuration, it will default to 1. This attribute's value can be referred to in the autoversion format template. format The format is a Text::Template string that will be rendered to form the version. It is meant to access to one variable, $major, and one subroutine, "cldr", which will format the current time (in GMT) using CLDR patterns (for which consult the DateTime documentation). The default value is: {{ $major }}.{{ cldr('yyDDD') }} {{ sprintf('%01u', ($ENV{N} || 0)) }} {{$ENV{DEV} ? (sprintf '_%03u', $ENV{DEV}) : ''}} SEE ALSO
Core Dist::Zilla plugins: PkgVersion, PodVersion, NextRelease. Dist::Zilla roles: VersionProvider, TextTemplate. 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::AutoVersion(3pm)

Check Out this Related Man Page

Dist::Zilla::PluginBundle::Basic(3pm)			User Contributed Perl Documentation		     Dist::Zilla::PluginBundle::Basic(3pm)

NAME
Dist::Zilla::PluginBundle::Basic - the basic plugins to maintain and release CPAN dists VERSION
version 4.300020 DESCRIPTION
This plugin is meant to be a basic "first step" bundle for using Dist::Zilla. It won't munge any of your code, but will generate a Makefile.PL and allows easy, reliable releasing of distributions. It includes the following plugins with their default configuration: o Dist::Zilla::Plugin::GatherDir o Dist::Zilla::Plugin::PruneCruft o Dist::Zilla::Plugin::ManifestSkip o Dist::Zilla::Plugin::MetaYAML o Dist::Zilla::Plugin::License o Dist::Zilla::Plugin::Readme o Dist::Zilla::Plugin::ExtraTests o Dist::Zilla::Plugin::ExecDir o Dist::Zilla::Plugin::ShareDir o Dist::Zilla::Plugin::MakeMaker o Dist::Zilla::Plugin::Manifest o Dist::Zilla::Plugin::TestRelease o Dist::Zilla::Plugin::ConfirmRelease o Dist::Zilla::Plugin::UploadToCPAN SEE ALSO
Core Dist::Zilla plugins: @Filter. Dist::Zilla roles: PluginBundle, PluginBundle::Easy. 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::PluginBundle::Basic(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What is meant by <<! ... ! ??

I tried typing it into google but no results. I don't know what it's called or what it does and when it is used so I must ask: What does it mean if you have something like... cmd <!! cm2 cm3 ! What do those <!! and ! symbols do? When/why do you use them? I found it inside a bourne... (2 Replies)
Discussion started by: yongho
2 Replies

2. Programming

Data formating using C programm with Hex deciamal 'x0d'

:b:Guys, Can some body throw some light on this please..... sprintf(req_line1, "%c%s%c", '\x0b',"TESTING1",'\x0d'); sprintf(req_line2, "%s%c", "TESTING2", '\x0d'); sprintf(req_line3, "%s%c", "Testing3", '\x0d'); sprintf(req_line4, "%s%c%c%c", "Testing4", '\x0d', '\x1c', '\x0d'); ... (6 Replies)
Discussion started by: sudharma
6 Replies

3. AIX

major no

hi what is meant by major no in vg what is meant by concurrent vg i cant understand these two things (3 Replies)
Discussion started by: senmak
3 Replies

4. Programming

Some help with Perl please

Can anyone break this down for me? if (!(-e $cfg_file)) { if ($ENV{'WINDIR'}) {#windows $pt = $ENV{'SCRIPT_FILENAME'}; $pt = $ENV{'PATH_TRANSLATED'} if $ENV{'PATH_TRANSLATED'}; $pt =~ s/\\/\//g; @m = split(/\//,$pt); pop @m; $cfg_file =... (2 Replies)
Discussion started by: callyvan
2 Replies