| Build-Daily documentation | view source | Contained in the Build-Daily distribution. |
Build::Daily - module to update daily versions for Module::Build and ExtUtils::MakeMaker
perl -MBuild::Daily Build.PL
perl -MBuild::Daily Makefile.PL
# force version append, useful when not building daily but based on ex. SVN revisions
perl -MBuild::Daily=version,12345 Build.PL
perl -MBuild::Daily=version,12345 Build
perl -MBuild::Daily=version,12345 Build distmeta
perl -MBuild::Daily=version,12345 Build dist
Updates $VERSION string based on current date or forced string. This
allows to create daily/commit builds.
use Build::Daily 'version' => '12345';
Forces string that will be appended.
For original version returns new version.
$original_version.($original_version =~ m/_/ ? '' : '_').$append
$append is either YearMonthDay or the forced string.
Jozef Kutej, <jkutej at cpan.org>
Please report any bugs or feature requests to bug-build-daily at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Build-Daily. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Build::Daily
You can also look for information at:
Copyright 2009 Jozef Kutej, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Build-Daily documentation | view source | Contained in the Build-Daily distribution. |