| Module-Release-Extras documentation | Contained in the Module-Release-Extras distribution. |
Module::Release::NIKC - Subclass for releasing code
This subclass exists to inherit from
so that scripts/modules written by nikc@cpan.org, using Module::Build and stored in a Subversion repository can be released using Module::Release.
release only supports specifying a single subclass, hence this wrapper
around the multiple subclasses required.
Nik Clayton <nik@FreeBSD.org>
Copyright 2004 Nik Clayton. All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
None known.
Bugs should be reported to me via the CPAN RT system. http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module::Release::Extras.
Module::Release, Module::Release::ModuleBuild, Module::Release::Subversion
| Module-Release-Extras documentation | Contained in the Module-Release-Extras distribution. |
package Module::Release::NIKC; use strict; use warnings; # Need to 'use' these modules first (rather then relying on 'use base' to # require them) because they automatically export methods, and base.pm won't # call the import() method on anything it requires. This is one way to # do mixins. use Module::Release::ModuleBuild; use Module::Release::Subversion; use base qw(Module::Release); # Rely on @EXPORT in the modules
1;