App-revealup
view release on metacpan or search on metacpan
},
"runtime" : {
"requires" : {
"File::ShareDir" : "0",
"File::chdir" : "0",
"Getopt::Long" : "0",
"MIME::Types" : "0",
"Path::Tiny" : "0",
"Plack" : "0",
"Text::MicroTemplate" : "0",
"Try::Tiny" : "0.060",
"perl" : "5.008005"
}
},
"test" : {
"requires" : {
"Capture::Tiny" : "0",
"FindBin" : "0",
"LWP::UserAgent" : "0",
"Test::File::Contents" : "0.20",
"Test::More" : "0.98",
App::revealup::util:
file: lib/App/revealup/util.pm
requires:
File::ShareDir: '0'
File::chdir: '0'
Getopt::Long: '0'
MIME::Types: '0'
Path::Tiny: '0'
Plack: '0'
Text::MicroTemplate: '0'
Try::Tiny: '0.060'
perl: '5.008005'
resources:
bugtracker: https://github.com/yusukebe/App-revealup/issues
homepage: https://github.com/yusukebe/App-revealup
repository: https://github.com/yusukebe/App-revealup.git
version: '0.23'
x_authority: cpan:YUSUKEBE
x_contributors:
- 'A. Sinan Unur <nanis@cpan.org>'
- 'Jose Luis Martinez <jlmartinez@capside.com>'
requires 'perl', '5.008001';
requires 'Try::Tiny', '0.060';
requires 'Getopt::Long';
requires 'File::chdir';
requires 'File::ShareDir';
requires 'Path::Tiny';
requires 'Text::MicroTemplate';
requires 'Plack';
requires 'MIME::Types';
configure_requires 'Module::Build::Tiny';
lib/App/revealup/cli/export.pm view on Meta::CPAN
package App::revealup::cli::export;
use App::revealup::base;
use Pod::Usage;
use Try::Tiny;
use Carp qw/croak/;
has 'sub_commands' => [qw/html theme/];
sub run {
my ($self, $sub_command, @args) = @_;
usage() if !$sub_command;
if ($sub_command eq 'generate'){
$sub_command = 'theme';
}
( run in 0.762 second using v1.01-cache-2.11-cpan-05444aca049 )