Incorrect search filter: invalid characters - *.p[ml]
ARGV-JSON

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    },

    name            => 'ARGV-JSON',
    module_name     => 'ARGV::JSON',
    allow_pureperl => 0,

    script_files => [glob('script/*'), glob('bin/*')],
    c_source     => [qw()],
    PL_files => {},

    test_files           => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
    recursive_test_files => 1,

    
);
if (-d 'share') {
    $args{share_dir} = 'share';
}

my $builder = Module::Build->subclass(
    class => 'MyBuilder',
    code => q{

LICENSE  view on Meta::CPAN

OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

        Appendix: How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to humanity, the best way to achieve this is to make it
free software which everyone can redistribute and change under these
terms.

  To do so, attach the following notices to the program.  It is safest to
attach them to the start of each source file to most effectively convey
the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>

META.json  view on Meta::CPAN

         }
      },
      "runtime" : {
         "requires" : {
            "JSON" : "0",
            "Tie::Handle" : "0",
            "parent" : "0",
            "perl" : "5.008005"
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : "0.98"
         }
      }
   },
   "provides" : {
      "ARGV::JSON" : {
         "file" : "lib/ARGV/JSON.pm",
         "version" : "0.01"
      }

cpanfile  view on Meta::CPAN

requires 'perl', '5.008001';

requires 'parent';
requires 'JSON';
requires 'Tie::Handle';

on 'test' => sub {
    requires 'Test::More', '0.98';
};

t/00_compile.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

require_ok $_ for qw(
    ARGV::JSON
);

done_testing;

t/01_argv.t  view on Meta::CPAN

    bar => { baz => undef },
};

is_deeply [ <> ], [
    [ 'x', 'y', 'z' ],
    {},
];

is scalar <>, undef;

done_testing;



( run in 0.282 second using v1.01-cache-2.11-cpan-87723dcf8b7 )