Struct-Path-JsonPointer

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "Struct-Path-JsonPointer",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Clone" : "0",
            "Struct::Path" : "0.82",
            "Test::More" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {

META.yml  view on Meta::CPAN

---
abstract: 'JsonPointer (L<rfc6901|https://tools.ietf.org/html/rfc6901>)'
author:
  - 'Michael Samoglyadov <mixas@cpan.org>'
build_requires:
  Clone: 0
  Struct::Path: 0.82
  Test::More: 0
configure_requires:
  ExtUtils::MakeMaker: 0
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.133380'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4

Makefile.PL  view on Meta::CPAN

    AUTHOR           => 'Michael Samoglyadov <mixas@cpan.org>',
    VERSION_FROM     => 'lib/Struct/Path/JsonPointer.pm',
    ABSTRACT_FROM    => 'lib/Struct/Path/JsonPointer.pm',
    LICENSE          => 'Perl_5',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Clone'         => 0,
        'Struct::Path'  => "0.82",
        'Test::More'    => 0,
    },
    PREREQ_PM => {
        'Carp'          => 0,
        'Scalar::Util'  => 0,
    },
    META_MERGE => {
        resources => {
            repository  => 'https://github.com/mr-mixas/Struct-Path-JsonPointer.pm',

t/_common.pm  view on Meta::CPAN

package _common;

# common parts for Struct::Path::JsonPointer tests

use parent 'Exporter';

use Clone qw(clone);
use Data::Dumper qw();
use Struct::Path::JsonPointer qw(str2path path2str);
use Test::More;

our @EXPORT_OK = qw(
    roundtrip
    t_dump
);

sub roundtrip {

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.004 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )