Anego
view release on metacpan or search on metacpan
"requires" : {
"DBI" : "0",
"DBIx::Schema::DSL" : "0",
"Digest::MD5" : "0",
"Exporter" : "0",
"File::Spec" : "0",
"Getopt::Long" : "0",
"Git::Repository" : "0",
"SQL::Translator" : "0",
"Term::ANSIColor" : "0",
"Try::Tiny" : "0",
"perl" : "5.008001"
}
},
"test" : {
"requires" : {
"Capture::Tiny" : "0",
"Test::Git" : "0",
"Test::More" : "0.98",
"Test::Requires::Git" : "0"
}
requires:
DBI: '0'
DBIx::Schema::DSL: '0'
Digest::MD5: '0'
Exporter: '0'
File::Spec: '0'
Getopt::Long: '0'
Git::Repository: '0'
SQL::Translator: '0'
Term::ANSIColor: '0'
Try::Tiny: '0'
perl: '5.008001'
resources:
bugtracker: https://github.com/papix/Anego/issues
homepage: https://github.com/papix/Anego
repository: git://github.com/papix/Anego.git
version: '0.02'
x_authority: cpan:PAPIX
x_contributors:
- 'dokechin <ttatsumi@ra2.so-net.ne.jp>'
- 'dokechin <user@user-PC.(none)>'
requires 'DBI';
requires 'DBIx::Schema::DSL';
requires 'Digest::MD5';
requires 'Exporter';
requires 'File::Spec';
requires 'Getopt::Long';
requires 'Git::Repository';
requires 'SQL::Translator';
requires 'Term::ANSIColor';
requires 'Try::Tiny';
requires 'perl', '5.008001';
on 'test' => sub {
requires 'Test::More', '0.98';
requires 'Test::Git';
requires 'Test::Requires::Git';
requires 'Capture::Tiny';
};
lib/Anego/CLI.pm view on Meta::CPAN
package Anego::CLI;
use strict;
use warnings;
use utf8;
use Getopt::Long;
use Module::Load;
use Try::Tiny;
use Anego::Logger;
sub run {
my ($self, @args) = @_;
local @ARGV = @args;
my $parser = Getopt::Long::Parser->new(
config => [ "no_ignore_case", "pass_through" ],
);
( run in 0.973 second using v1.01-cache-2.11-cpan-05444aca049 )