Acme-CPANModules-TableData

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    All Perl modules under "TableData::*" namespace are modules that contain
    table data. Examples include: "TableData::Sample::DeNiro",
    "TableData::Perl::CPAN::Release::Static",
    "TableData::Perl::CPAN::Release::Dynamic".

    CLIs

    td (from App::td) offers commands to manipulate table data. In addition
    to a "TableData::*" module, you can also feed it CSV, TSV, JSON, YAML
    files. The commands include: head, tail, sort, sum, avg, select rows, wc
    (count rows), grep, map, etc.

    tabledata (from App::tabledata) is the official CLI for "TableData".
    Currently it offers less commands than "td", but it can also list
    "TableData::*" modules in local installation or CPAN.

    fsql (from App::fsql) allows you to query "TableData::*" modules (as
    well as CSV/TSV/JSON/YAML files) using SQL.

    Sah schemas

lib/Acme/CPANModules/TableData.pm  view on Meta::CPAN

data. Examples include: `TableData::Sample::DeNiro`,
`TableData::Perl::CPAN::Release::Static`,
`TableData::Perl::CPAN::Release::Dynamic`.


**CLIs**

<prog:td> (from <pm:App::td>) offers commands to manipulate table data. In
addition to a `TableData::*` module, you can also feed it CSV, TSV, JSON, YAML
files. The commands include: head, tail, sort, sum, avg, select rows, wc (count
rows), grep, map, etc.

<prog:tabledata> (from <pm:App::tabledata>) is the official CLI for `TableData`.
Currently it offers less commands than `td`, but it can also list `TableData::*`
modules in local installation or CPAN.

<prog:fsql> (from <pm:App::fsql>) allows you to query `TableData::*` modules (as
well as CSV/TSV/JSON/YAML files) using SQL.


**Sah schemas**

lib/Acme/CPANModules/TableData.pm  view on Meta::CPAN

All Perl modules under C<TableData::*> namespace are modules that contain table
data. Examples include: C<TableData::Sample::DeNiro>,
C<TableData::Perl::CPAN::Release::Static>,
C<TableData::Perl::CPAN::Release::Dynamic>.

B<CLIs>

L<td> (from L<App::td>) offers commands to manipulate table data. In
addition to a C<TableData::*> module, you can also feed it CSV, TSV, JSON, YAML
files. The commands include: head, tail, sort, sum, avg, select rows, wc (count
rows), grep, map, etc.

L<tabledata> (from L<App::tabledata>) is the official CLI for C<TableData>.
Currently it offers less commands than C<td>, but it can also list C<TableData::*>
modules in local installation or CPAN.

L<fsql> (from L<App::fsql>) allows you to query C<TableData::*> modules (as
well as CSV/TSV/JSON/YAML files) using SQL.

B<Sah schemas>

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

use IO::Handle;

open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!";

my @warnings;
for my $lib (@module_files)
{
    # see L<perlfaq8/How can I capture STDERR from an external command?>
    my $stderr = IO::Handle->new;

    diag('Running: ', join(', ', map { my $str = $_; $str =~ s/'/\\'/g; q{'} . $str . q{'} }
            $^X, @switches, '-e', "require q[$lib]"))
        if $ENV{PERL_COMPILE_TEST_DEBUG};

    my $pid = open3($stdin, '>&STDERR', $stderr, $^X, @switches, '-e', "require q[$lib]");
    binmode $stderr, ':crlf' if $^O eq 'MSWin32';
    my @_warnings = <$stderr>;
    waitpid($pid, 0);
    is($?, 0, "$lib loaded ok");

    shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/



( run in 1.277 second using v1.01-cache-2.11-cpan-49f99fa48dc )