Data-Censor

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::More" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Ref::Util" : "0",
            "perl" : "5.006"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/bigpresh/Data-Censor/issues"
      },
      "homepage" : "https://github.com/bigpresh/Data-Censor",

META.yml  view on Meta::CPAN

license: unknown
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Data-Censor
no_index:
  directory:
    - t
    - inc
requires:
  Ref::Util: '0'
  perl: '5.006'
resources:
  bugtracker: https://github.com/bigpresh/Data-Censor/issues
  homepage: https://github.com/bigpresh/Data-Censor
  repository: https://github.com/bigpresh/Data-Censor
version: '0.04'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

    LICENSE          => 'Artistic_2_0',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'Ref::Util' => 0,
        #'ABC'              => 1.6,
        #'Foo::Bar::Module' => 5.0401,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Data-Censor-*' },
    META_MERGE => {
        resources => {
            repository => 'https://github.com/bigpresh/Data-Censor',
            bugtracker => 'https://github.com/bigpresh/Data-Censor/issues',
            homepage   => 'https://github.com/bigpresh/Data-Censor',

lib/Data/Censor.pm  view on Meta::CPAN

package Data::Censor;

use 5.006;
use strict;
use warnings FATAL => 'all';
use Carp;

use Ref::Util qw/ is_hashref /;

=head1 NAME

Data::Censor - censor sensitive stuff in a data structure

=head1 VERSION

Version 0.04

=cut



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