| Module-Packaged-Generator documentation | Contained in the Module-Packaged-Generator distribution. |
Module::Packaged::Generator::Distribution - base class for all distribution drivers
version 1.111040
This module doesn't do anything useful, but defining methods that distribution drivers should implement. Those stub methods are just dying, since they should be overridden in the sub-classes.
my $bool = $class->match;
Return true if the class has detected that it can provides information on the current machine.
my @modules = $class->list;
Return the list of available Perl modules for this distribution.
Jerome Quelin
This software is copyright (c) 2010 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.
| Module-Packaged-Generator documentation | Contained in the Module-Packaged-Generator distribution. |
# # This file is part of Module-Packaged-Generator # # This software is copyright (c) 2010 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. # use 5.008; use strict; use warnings; package Module::Packaged::Generator::Distribution; BEGIN { $Module::Packaged::Generator::Distribution::VERSION = '1.111040'; } # ABSTRACT: base class for all distribution drivers # -- public methods sub match { die "unimplemented" } sub list { die "unimplemented" } 1;
__END__