this repo has no description

updated documentation

+1 -1
Changes
···
Revision history for CHI-Driver-MongoDB
-
0.01 Date/time
+
0.01 May 18, 2011
Initial version.
+6 -5
MANIFEST
···
Changes
INSTALL
LICENSE
-
lib/CHI/Driver/MongoDB.pm
+
MANIFEST
+
META.json
+
META.yml
Makefile.PL
-
MANIFEST This list of files
+
lib/CHI/Driver/MongoDB.pm
+
lib/CHI/Driver/MongoDB/t/CHIDriverTests/MongoDB.pm
README
t/00-load.t
-
t/manifest.t
-
t/pod-coverage.t
-
t/pod.t
+
t/CHIDriverTests-MongoDB.t
+53
META.json
···
+
{
+
"abstract" : "Use MongoDB for cache storage",
+
"author" : [
+
"Nick Mohoric <nick.mohoric@gmail.com>"
+
],
+
"dynamic_config" : 0,
+
"license" : [
+
"perl_5"
+
],
+
"meta-spec" : {
+
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+
"version" : "2"
+
},
+
"name" : "CHI-Driver-MongoDB",
+
"no_index" : {
+
"directory" : [
+
"lib/CHI/Driver/MongoDB/t",
+
],
+
},
+
"prereqs" : {
+
"configure" : {
+
"requires" : {
+
"ExtUtils::MakeMaker" : "6.31"
+
}
+
},
+
"runtime" : {
+
"requires" : {
+
"CHI" : "0.241",
+
"MongoDB" : "0.42"
+
}
+
},
+
"test" : {
+
"requires" : {
+
"Test::Class" : 0,
+
"Test::More" : 0
+
}
+
}
+
},
+
"release_status" : "stable",
+
"resources" : {
+
"bugtracker" : {
+
"mailto" : "bug-chi-driver-mongodb@rt.cpan.org",
+
"web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=CHI-Driver-MongoDB"
+
},
+
"repository" : {
+
"type" : "git",
+
"url" : "git://github.com/AddingMachine/Chi-Driver-MongoDB.git",
+
"web" : "https://github.com/AddingMachine/Chi-Driver-MongoDB"
+
}
+
},
+
"version" : "0.01"
+
}
+
+25
META.yml
···
+
---
+
abstract: 'Use MongoDB for cache storage'
+
author:
+
- 'Nick Mohoric <nick.mohoricc@gmail.com>'
+
build_requires:
+
Test::Class: 0
+
Test::More: 0
+
configure_requires:
+
ExtUtils::MakeMaker: 6.31
+
dynamic_config: 0
+
license: perl
+
meta-spec:
+
url: http://module-build.sourceforge.net/META-spec-v1.4.html
+
version: 1.4
+
name: CHI-Driver-MongoDB
+
no_index:
+
directory:
+
- lib/CHI/Driver/MongoDB/t
+
requires:
+
CHI: 0.241
+
MongoDB: 0.42
+
resources:
+
bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=CHI-Driver-MongoDB
+
repository: git://github.com/AddingMachine/Chi-Driver-MongoDB.git
+
version: 0.01
+8 -3
Makefile.PL
···
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
+
BUILD_REQUIRES => {
+
'Test::Class' => '0',
+
'Test::More' => '0'
+
},
+
CONFIGURE_REQUIRES => {
+
'ExtUtils::MakeMaker' => '6.31'
+
},
+
LICENSE => 'perl',
PREREQ_PM => {
-
'Test::More' => 0,
'CHI' => '0.241',
'MongoDB' => '0.42',
},
-
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-
clean => { FILES => 'CHI-Driver-MongoDB-*' },
test => { TESTS => 't/*.t' },
);
-12
t/pod.t
···
-
#!perl -T
-
-
use strict;
-
use warnings;
-
use Test::More;
-
-
# Ensure a recent version of Test::Pod
-
my $min_tp = 1.22;
-
eval "use Test::Pod $min_tp";
-
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
-
-
all_pod_files_ok();