MySQL-Util-CLI

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "runtime" : {
         "requires" : {
            "CLI::Driver" : "0.50",
            "Carp" : "0",
            "Data::Printer" : "0",
            "File::Basename" : "0",
            "File::ShareDir" : "0",
            "Getopt::Long" : "0",
            "Kavorka" : "0",
            "Modern::Perl" : "0",
            "Moose" : "0",
            "MySQL::Util" : "0",
            "Text::ASCIITable" : "0",
            "Util::Medley::Roles::Attributes::List" : "0",
            "Util::Medley::Roles::Attributes::Logger" : "0",
            "Util::Medley::Roles::Attributes::String" : "0",
            "constant" : "0",
            "namespace::autoclean" : "0",
            "vars" : "0",
            "warnings" : "0"

META.yml  view on Meta::CPAN

  version: '1.4'
name: MySQL-Util-CLI
requires:
  CLI::Driver: '0.50'
  Carp: '0'
  Data::Printer: '0'
  File::Basename: '0'
  File::ShareDir: '0'
  Getopt::Long: '0'
  Kavorka: '0'
  Modern::Perl: '0'
  Moose: '0'
  MySQL::Util: '0'
  Text::ASCIITable: '0'
  Util::Medley::Roles::Attributes::List: '0'
  Util::Medley::Roles::Attributes::Logger: '0'
  Util::Medley::Roles::Attributes::String: '0'
  constant: '0'
  namespace::autoclean: '0'
  vars: '0'
  warnings: '0'

Makefile.PL  view on Meta::CPAN

  "LICENSE" => "perl",
  "NAME" => "MySQL::Util::CLI",
  "PREREQ_PM" => {
    "CLI::Driver" => "0.50",
    "Carp" => 0,
    "Data::Printer" => 0,
    "File::Basename" => 0,
    "File::ShareDir" => 0,
    "Getopt::Long" => 0,
    "Kavorka" => 0,
    "Modern::Perl" => 0,
    "Moose" => 0,
    "MySQL::Util" => 0,
    "Text::ASCIITable" => 0,
    "Util::Medley::Roles::Attributes::List" => 0,
    "Util::Medley::Roles::Attributes::Logger" => 0,
    "Util::Medley::Roles::Attributes::String" => 0,
    "constant" => 0,
    "namespace::autoclean" => 0,
    "vars" => 0,
    "warnings" => 0

Makefile.PL  view on Meta::CPAN



my %FallbackPrereqs = (
  "CLI::Driver" => "0.50",
  "Carp" => 0,
  "Data::Printer" => 0,
  "File::Basename" => 0,
  "File::ShareDir" => 0,
  "Getopt::Long" => 0,
  "Kavorka" => 0,
  "Modern::Perl" => 0,
  "Moose" => 0,
  "MySQL::Util" => 0,
  "Test::More" => 0,
  "Text::ASCIITable" => 0,
  "Util::Medley::Roles::Attributes::List" => 0,
  "Util::Medley::Roles::Attributes::Logger" => 0,
  "Util::Medley::Roles::Attributes::String" => 0,
  "constant" => 0,
  "namespace::autoclean" => 0,
  "vars" => 0,

bin/mysql-util  view on Meta::CPAN

mysql-util - a cli utility for MySQL::Util

=head1 VERSION

version 0.002

=cut

###### PACKAGES ######

use Modern::Perl;
use warnings FATAL      => 'all';
use Data::Printer alias => 'pdump';
use CLI::Driver;
use File::ShareDir 'dist_file';
use File::Basename;
use Getopt::Long;
Getopt::Long::Configure('no_ignore_case');
Getopt::Long::Configure('pass_through');
Getopt::Long::Configure('no_auto_abbrev');

lib/MySQL/Util/CLI.pm  view on Meta::CPAN

=head1 NAME

MySQL::Util::CLI

=head1 VERSION

version 0.002

=cut

use Modern::Perl;
use Moose;
use namespace::autoclean;
use Kavorka '-all';
use MySQL::Util;
use Carp;
use Data::Printer alias => 'pdump';

with 'Util::Medley::Roles::Attributes::Logger';
with 'Util::Medley::Roles::Attributes::String';

lib/MySQL/Util/CLI/Exec.pm  view on Meta::CPAN

=head1 NAME

MySQL::Util::CLI::Exec

=head1 VERSION

version 0.002

=cut

use Modern::Perl;
use Moose;
use Kavorka '-all';
use namespace::autoclean;
use Data::Printer alias => 'pdump';
use MySQL::Util::CLI;
use Text::ASCIITable;
use Carp;

with 'Util::Medley::Roles::Attributes::List';

t/00-load.t  view on Meta::CPAN

#!/usr/bin/env perl

# vim: tabstop=4 expandtab

###### PACKAGES ######

use Modern::Perl;
use Data::Printer alias => 'pdump';
use Test::More;

###### CONSTANTS ######

###### GLOBALS ######

###### MAIN ######

BEGIN { use_ok('MySQL::Util::CLI'); }

t/10.t  view on Meta::CPAN

#!/usr/bin/env perl

# vim: tabstop=4 expandtab

###### PACKAGES ######

use Modern::Perl;
use Data::Printer alias => 'pdump';
use Test::More;
use Getopt::Long;
Getopt::Long::Configure('no_ignore_case');

use MySQL::Util::CLI;

###### CONSTANTS ######

###### GLOBALS ######



( run in 0.527 second using v1.01-cache-2.11-cpan-beeb90c9504 )