Eponymous-Hash

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300034, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Eponymous-Hash
requires:
  PadWalker: 1.96
  Scalar::Util: 0
resources:
  repository: git://github.com/tempire/eponymous-hash.git
version: 0.02

Makefile.PL  view on Meta::CPAN

  "AUTHOR" => "Glen Hinkle",
  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Eponymous-Hash",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Eponymous::Hash",
  "PREREQ_PM" => {
    "PadWalker" => "1.96",
    "Scalar::Util" => 0
  },
  "TEST_REQUIRES" => {},
  "VERSION" => "0.02",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


dist.ini  view on Meta::CPAN

auth = Glen Hinkle <tempire@cpan.org>
license = Perl_5
copyright_holder = Glen Hinkle
version = 0.02

[@Filter]
bundle = @Basic
;remove = Readme

[Prereqs]
PadWalker = 1.96
Scalar::Util = 0

[AutoMetaResources]
repository.github  = user:tempire

[ReadmeAnyFromPod / pod.root ]
filename = README.pod
type = pod
location = root

lib/Eponymous/Hash.pm  view on Meta::CPAN

package Eponymous::Hash;
use PadWalker 'var_name';
use Scalar::Util 'blessed';

our $VERSION = '0.02';

sub import {
  shift;
  my $name = pop || 'eponymous_hash';
  my $calling_class = caller;

  *{"${calling_class}::$name"} = \&eponymous_hash;



( run in 0.874 second using v1.01-cache-2.11-cpan-05444aca049 )