B-OPCheck

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "PL_check hacks using Perl callbacks",
   "author" : [
      "Chia-liang Kao <clkao@clkao.org>",
      "\u05d9\u05d5\u05d1\u05dc \u05e7\u05d5\u05d2'\u05de\u05df (Yuval Kogman) <nothingmuch@woobling.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 6.005, CPAN::Meta::Converter version 2.150008",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {

META.yml  view on Meta::CPAN

---
abstract: 'PL_check hacks using Perl callbacks'
author:
  - 'Chia-liang Kao <clkao@clkao.org>'
  - "יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>"
build_requires:
  File::Spec: '0'
  Module::Metadata: '0'
  Test::More: '0'
  perl: '5.008'
configure_requires:
  B::Utils: '0.08'

Makefile.PL  view on Meta::CPAN

use 5.008;
use ExtUtils::MakeMaker;

use ExtUtils::Depends 0.302;
my $pkg = ExtUtils::Depends->new(
    'B::OPCheck',
    'B::Utils',
);

my %WriteMakefileArgs = (
  "ABSTRACT" => "PL_check hacks using Perl callbacks",
  "AUTHOR" => "Chia-liang Kao <clkao\@clkao.org>, \x{5d9}\x{5d5}\x{5d1}\x{5dc} \x{5e7}\x{5d5}\x{5d2}'\x{5de}\x{5df} (Yuval Kogman) <nothingmuch\@woobling.org>",
  "CONFIGURE_REQUIRES" => {
    "B::Utils" => "0.08",
    "ExtUtils::Depends" => "0.302",
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "B-OPCheck",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008",
  "NAME" => "B::OPCheck",

README  view on Meta::CPAN



This archive contains the distribution B-OPCheck,
version 0.32:

  PL_check hacks using Perl callbacks

This software is copyright (c) 2009 by Chia-liang Kao, יובל קוג'מן (Yuval Kogman).

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.


This README file was generated by Dist::Zilla::Plugin::Readme v6.005.

lib/B/OPCheck.pm  view on Meta::CPAN

package B::OPCheck; # git description: v0.31-4-gd081d88
# ABSTRACT: PL_check hacks using Perl callbacks

use 5.008;

use strict;
use warnings;

use Carp;
use XSLoader;
use Scalar::Util;
use Scope::Guard;

lib/B/OPCheck.pm  view on Meta::CPAN

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

B::OPCheck - PL_check hacks using Perl callbacks

=head1 VERSION

version 0.32

=head1 SYNOPSIS

    use B::Generate; # to change things

    use B::OPCheck entersub => check => sub {



( run in 0.389 second using v1.01-cache-2.11-cpan-9b1e4054eb1 )