Acme-CPANModules-InterestingTies

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

                     ":PerlExecFiles"
                  ],
                  "skips" : [],
                  "switch" : []
               }
            },
            "name" : "@Author::PERLANCAR/Test::Compile",
            "version" : "2.058"
         },
         {
            "class" : "Dist::Zilla::Plugin::Test::Perl::Critic::Subset",
            "config" : {
               "Dist::Zilla::Plugin::Test::Perl::Critic::Subset" : {
                  "finder" : [
                     ":ExecFiles",
                     ":InstallModules",
                     ":TestFiles"
                  ]
               }
            },
            "name" : "@Author::PERLANCAR/Test::Perl::Critic::Subset",
            "version" : "3.001.006"
         },
         {
            "class" : "Dist::Zilla::Plugin::Test::Rinci",
            "name" : "@Author::PERLANCAR/Test::Rinci",
            "version" : "0.040"
         },
         {
            "class" : "Dist::Zilla::Plugin::StaticInstall",
            "config" : {

META.yml  view on Meta::CPAN

            - ':InstallModules'
          needs_display: 0
          phase: test
          script_finder:
            - ':PerlExecFiles'
          skips: []
          switch: []
      name: '@Author::PERLANCAR/Test::Compile'
      version: '2.058'
    -
      class: Dist::Zilla::Plugin::Test::Perl::Critic::Subset
      config:
        Dist::Zilla::Plugin::Test::Perl::Critic::Subset:
          finder:
            - ':ExecFiles'
            - ':InstallModules'
            - ':TestFiles'
      name: '@Author::PERLANCAR/Test::Perl::Critic::Subset'
      version: 3.001.006
    -
      class: Dist::Zilla::Plugin::Test::Rinci
      name: '@Author::PERLANCAR/Test::Rinci'
      version: '0.040'
    -
      class: Dist::Zilla::Plugin::StaticInstall
      config:
        Dist::Zilla::Plugin::StaticInstall:
          dry_run: 0

README  view on Meta::CPAN

    Acme::CPANModules::InterestingTies - List of interesting uses of the
    tie() interface

VERSION
    This document describes version 0.001 of
    Acme::CPANModules::InterestingTies (from Perl distribution
    Acme-CPANModules-InterestingTies), released on 2023-10-31.

DESCRIPTION
    The perl's tie interface allows you to create "magical" scalar, array,
    hash, or filehandle. When you read or set the value of these variables,
    various things can be triggered.

    This Acme::CPANModules list catalogs some of the interesting uses of the
    tie() interface.

ACME::CPANMODULES ENTRIES
    Acme::Tie::Formatted
        Author: MCMAHON <https://metacpan.org/author/MCMAHON>

        This module allows you to do sprintf() by accessing a hash key,

lib/Acme/CPANModules/InterestingTies.pm  view on Meta::CPAN

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-31'; # DATE
our $DIST = 'Acme-CPANModules-InterestingTies'; # DIST
our $VERSION = '0.001'; # VERSION

our $LIST = {
    summary => "List of interesting uses of the tie() interface",
    description => <<'MARKDOWN',

The perl's tie interface allows you to create "magical" scalar, array, hash, or
filehandle. When you read or set the value of these variables, various things
can be triggered.

This <pm:Acme::CPANModules> list catalogs some of the interesting uses of the
tie() interface.

MARKDOWN
    entries => [

        {
            module => 'Acme::Tie::Formatted',

lib/Acme/CPANModules/InterestingTies.pm  view on Meta::CPAN


Acme::CPANModules::InterestingTies - List of interesting uses of the tie() interface

=head1 VERSION

This document describes version 0.001 of Acme::CPANModules::InterestingTies (from Perl distribution Acme-CPANModules-InterestingTies), released on 2023-10-31.

=head1 DESCRIPTION

The perl's tie interface allows you to create "magical" scalar, array, hash, or
filehandle. When you read or set the value of these variables, various things
can be triggered.

This L<Acme::CPANModules> list catalogs some of the interesting uses of the
tie() interface.

=head1 ACME::CPANMODULES ENTRIES

=over

=item L<Acme::Tie::Formatted>

t/author-critic.t  view on Meta::CPAN

  unless ($ENV{AUTHOR_TESTING}) {
    print qq{1..0 # SKIP these tests are for testing by the author\n};
    exit
  }
}


use strict;
use warnings;

# this test was generated with Dist::Zilla::Plugin::Test::Perl::Critic::Subset 3.001.006

use Test::Perl::Critic (-profile => "") x!! -e "";

my $filenames = ['lib/Acme/CPANModules/InterestingTies.pm'];
unless ($filenames && @$filenames) {
    $filenames = -d "blib" ? ["blib"] : ["lib"];
}

all_critic_ok(@$filenames);



( run in 1.539 second using v1.01-cache-2.11-cpan-49f99fa48dc )