Config-IOD

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Pod::Coverage::TrustPod" : "0",
            "Test::Perl::Critic" : "0",
            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         }
      },
      "runtime" : {
         "requires" : {
            "Config::IOD::Base" : "0.344",
            "Exporter" : "5.57",
            "Test::Differences" : "0",
            "Test::Exception" : "0",
            "Test::More" : "0.98",
            "constant" : "0",
            "overload" : "0",
            "parent" : "0",
            "perl" : "5.010001",
            "strict" : "0",
            "warnings" : "0"
         }
      },

META.yml  view on Meta::CPAN

    version: '0.353'
  Config::IOD::INI:
    file: lib/Config/IOD/INI.pm
    version: '0.353'
  Test::Config::IOD:
    file: lib/Test/Config/IOD.pm
    version: '0.353'
requires:
  Config::IOD::Base: '0.344'
  Exporter: '5.57'
  Test::Differences: '0'
  Test::Exception: '0'
  Test::More: '0.98'
  constant: '0'
  overload: '0'
  parent: '0'
  perl: '5.010001'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Config-IOD

Makefile.PL  view on Meta::CPAN

  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Config-IOD",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.010001",
  "NAME" => "Config::IOD",
  "PREREQ_PM" => {
    "Config::IOD::Base" => "0.344",
    "Exporter" => "5.57",
    "Test::Differences" => 0,
    "Test::Exception" => 0,
    "Test::More" => "0.98",
    "constant" => 0,
    "overload" => 0,
    "parent" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "File::ShareDir::Tarball" => 0,

Makefile.PL  view on Meta::CPAN

  "Config::IOD::Base" => "0.344",
  "Exporter" => "5.57",
  "File::ShareDir::Tarball" => 0,
  "File::Slurper" => 0,
  "File::Spec" => 0,
  "File::Temp" => "0.2307",
  "IO::Handle" => 0,
  "IOD::Examples" => "0.201",
  "IPC::Open3" => 0,
  "Test::Config::IOD::Common" => 0,
  "Test::Differences" => 0,
  "Test::Exception" => 0,
  "Test::More" => "0.98",
  "constant" => 0,
  "overload" => 0,
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);


dist.ini  view on Meta::CPAN


[Prereqs]
perl=5.010001
constant=0
overload=0
parent=0
strict=0
warnings=0
Config::IOD::Base=0.344
Exporter=5.57
Test::Differences=0
Test::Exception=0
Test::More=0.98

lib/Test/Config/IOD.pm  view on Meta::CPAN

package Test::Config::IOD;

## no critic (Modules::ProhibitAutomaticExportation)

use 5.010;
use strict;
use warnings;

use Test::Differences;
use Test::Exception;
use Test::More;
use Config::IOD;

use Exporter qw(import);

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-05-02'; # DATE
our $DIST = 'Config-IOD'; # DIST
our $VERSION = '0.353'; # VERSION

t/spec.t  view on Meta::CPAN

#!perl

use 5.010;
use strict;
use warnings;

use Config::IOD;
use File::ShareDir::Tarball qw(dist_dir);
use File::Slurper 'read_text';
use Test::Differences;
use Test::Exception;
use Test::More 0.98;

my $dir = dist_dir('IOD-Examples');
diag ".IOD files are at $dir";

my $iod = Config::IOD->new(
    enable_expr => 1,
    expr_vars => {
        a => 2,



( run in 2.373 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )