Transform Apache::Session::NoSQL to a CPAN package

environments/ppa-mbqj77/deployments/1
Xavier Guimard 15 years ago
parent eca3c8d803
commit 20894c05a5
  1. 4
      contribs/apache-session-ldap/lib/Apache/Session/LDAP.pm
  2. 6
      contribs/apache-session-nosql/Changes
  3. 9
      contribs/apache-session-nosql/MANIFEST
  4. 11
      contribs/apache-session-nosql/Makefile.PL
  5. 14
      contribs/apache-session-nosql/lib/Apache/Session/NoSQL.pm
  6. 15
      contribs/apache-session-nosql/t/Apache-Session-NoSQL.t

@ -45,12 +45,12 @@ Apache::Session::LDAP - An implementation of Apache::Session
=head1 DESCRIPTION
This module is an implementation of Apache::Session. It uses an LDAP directory
This module is an implementation of Apache::Session. It uses an LDAP directory
to store datas.
=head1 AUTHOR
Xavier Guimard, E<lt>guimard@E<gt>
Xavier Guimard, E<lt>x.guimard@free.frE<gt>
=head1 COPYRIGHT AND LICENSE

@ -0,0 +1,6 @@
Revision history for Perl extension Apache::Session::NoSQL.
0.01 Thu May 13 09:06:50 2010
- original version; created by h2xs 1.23 with options
-AXn Apache::Session::NoSQL

@ -0,0 +1,9 @@
Changes
examples/simple.pl
lib/Apache/Session/NoSQL.pm
lib/Apache/Session/Store/NoSQL.pm
lib/Apache/Session/Store/NoSQL/Cassandra.pm
Makefile.PL
MANIFEST
README
t/Apache-Session-NoSQL.t

@ -0,0 +1,11 @@
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Apache::Session::NoSQL',
VERSION_FROM => 'lib/Apache/Session/NoSQL.pm', # finds $VERSION
PREREQ_PM => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Apache/Session/NoSQL.pm', # retrieve abstract from module
AUTHOR => 'Thomas Chemineau <thomas.chemineau@gmail.com>') : ()),
);

@ -32,13 +32,19 @@ __END__
=head1 NAME
Apache::Session::NoSQL
Apache::Session::NoSQL - An implementation of Apache::Session module for NoSQL databases
=head1 SYNOPSIS
use Apache::Session::NoSQL;
tie %hash, 'Apache::Session::NoSQL', $id, {
# TODO
};
=head1 DESCRIPTION
=head1 SEE ALSO
This module is an implementation of Apache::Session. It uses a NoSQL database
to store datas.
=head1 AUTHOR
@ -52,4 +58,8 @@ This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.0 or,
at your option, any later version of Perl 5 you may have available.
=head1 SEE ALSO
L<Apache::Session>
=cut

@ -0,0 +1,15 @@
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl Apache-Session-NoSQL.t'
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 1;
BEGIN { use_ok('Apache::Session::NoSQL') };
#########################
# Insert your test code below, the Test::More module is use()ed here so read
# its man page ( perldoc Test::More ) for help writing this test script.
Loading…
Cancel
Save