Tie-Redis

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300021, CPAN::Meta::Converter version 2.120921'
license: unrestricted
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Tie-Redis
requires:
  IO::Socket::IP: 0
  PadWalker: 1.0
  Protocol::Redis: 1.0
resources:
  bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Tie-Redis
  repository: git://github.com/dgl/Tie-Redis
version: 0.26

Makefile.PL  view on Meta::CPAN

  "BUILD_REQUIRES" => {},
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Tie-Redis",
  "EXE_FILES" => [],
  "LICENSE" => "unrestricted",
  "NAME" => "Tie::Redis",
  "PREREQ_PM" => {
    "IO::Socket::IP" => 0,
    "PadWalker" => "1.0",
    "Protocol::Redis" => "1.0"
  },
  "VERSION" => "0.26",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {

dist.ini  view on Meta::CPAN

copyright_year   = 2011
copyright_holder = David Leadbeater

[@Classic]
[@Git]
[PodWeaver]

[Prereqs]
IO::Socket::IP  = 0
Protocol::Redis = 1.0
PadWalker       = 1.0

[MetaResources]
bugtracker.web    = http://rt.cpan.org/NoAuth/Bugs.html?Dist=Tie-Redis
bugtracker.mailto = bug-tie-redis@rt.cpan.org
repository.url    = git://github.com/dgl/Tie-Redis
repository.web    = https://github.com/dgl/Tie-Redis
repository.type   = git

lib/Tie/Redis/Attribute.pm  view on Meta::CPAN

  $Tie::Redis::Attribute::VERSION = '0.26';
}
# ABSTRACT: Variable attribute based interface to Tie::Redis

use 5.010001; # >= 5.10.1
use strict;
use warnings;

use Attribute::Handlers;
use Tie::Redis;
use PadWalker qw(var_name);

no warnings 'redefine';

sub import {
  my($class) = @_;
  my $pkg = caller;
  eval qq{
    sub ${pkg}::Redis :ATTR(VAR) {
      unshift \@_, \$class;
      goto &_do_tie;



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