App-VW
view release on metacpan or search on metacpan
lib/App/VW/Install.pm view on Meta::CPAN
123456789101112131415161718192021package
App::VW::Install;
use
strict;
use
warnings;
use
File::Copy;
sub
options {
my
(
$class
) =
@_
;
(
$class
->SUPER::options,
);
}
our
%systems
;
$systems
{debian} = {};
$systems
{ubuntu} =
$systems
{debian};
$systems
{gentoo} =
undef
;
$systems
{centos} =
undef
;
sub
post_installation_message {
lib/App/VW/Setup.pm view on Meta::CPAN
5678910111213141516171819202122232425use
Cwd;
my
$config
= App::VW->config;
sub
options {
my
(
$class
) =
@_
;
(
$class
->SUPER::options,
'port|p=i'
=>
'port'
,
'size|s=s'
=>
'size'
,
'modules|m=s@'
=>
'modules'
,
);
}
sub
run {
my
(
$self
,
$app
) =
@_
;
die
(
"Please specify an App to start.\n"
)
( run in 0.230 second using v1.01-cache-2.11-cpan-454fe037f31 )