JSON-Util

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    dist_version_from   => 'lib/JSON/Util.pm',
    configure_requires  => { 'Module::Build' => 0.38 },
    requires => {
        'Scalar::Util'  => 0,
        'IO::Any'       => 0,
        'Carp'          => 0,
        'JSON::MaybeXS' => 0,
    },
    build_requires => {
        'Test::More'        => 0,
        'Test::Differences' => 0,
        'File::Temp'        => 0,
        'Test::Exception'   => 0,
    },
    add_to_cleanup      => [ 'JSON-Util-*' ],
    create_readme       => 1,
    meta_merge => {
        resources => {
            repository => 'https://github.com/jozef/JSON-Util',
        },
    },

META.json  view on Meta::CPAN

   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
      "version" : "2"
   },
   "name" : "JSON-Util",
   "prereqs" : {
      "build" : {
         "requires" : {
            "File::Temp" : "0",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "Module::Build" : "0.38"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: 'easy and portable encode/decode of JSON'
author:
  - 'Jozef Kutej <jkutej@cpan.org>'
build_requires:
  File::Temp: '0'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::More: '0'
configure_requires:
  Module::Build: '0.38'
dynamic_config: 1
generated_by: 'Module::Build version 0.4214, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'

Makefile.PL  view on Meta::CPAN

WriteMakefile
(
  'NAME' => 'JSON::Util',
  'VERSION_FROM' => 'lib/JSON/Util.pm',
  'PREREQ_PM' => {
                   'Carp' => 0,
                   'File::Temp' => 0,
                   'IO::Any' => 0,
                   'JSON::MaybeXS' => 0,
                   'Scalar::Util' => 0,
                   'Test::Differences' => 0,
                   'Test::Exception' => 0,
                   'Test::More' => 0
                 },
  'INSTALLDIRS' => 'site',
  'EXE_FILES' => [],
  'PL_FILES' => {}
)
;

t/01_JSON-Util.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

use utf8;

#use Test::More 'no_plan';
use Test::More tests => 8;
use Test::Differences;
use File::Temp 'tempdir';
use IO::Any;
use JSON::MaybeXS;
use Test::Exception;

use FindBin '$Bin';

BEGIN {
	use_ok ( 'JSON::Util' ) or exit;
}



( run in 0.296 second using v1.01-cache-2.11-cpan-131fc08a04b )