Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Prasaad committed May 24, 2007
0 parents commit 7ccb161
Show file tree
Hide file tree
Showing 16 changed files with 1,195 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Tree-RB/.cvsignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
blib*
Makefile
Makefile.old
Build
_build*
pm_to_blib*
*.tar.gz
.lwpcookies
Tree-RB-*
cover_db
17 changes: 17 additions & 0 deletions Tree-RB/Build.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'Tree::RB',
license => 'perl',
dist_author => 'Arun Prasad <arunbear@cpan.org>',
dist_version_from => 'lib/Tree/RB.pm',
requires => {
'Test::More' => 0,
'version' => 0,
},
add_to_cleanup => [ 'Tree-RB-*' ],
);

$builder->create_build_script();
5 changes: 5 additions & 0 deletions Tree-RB/Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for Tree-RB

0.0.1 Sat May 5 23:17:15 2007
Initial release.

13 changes: 13 additions & 0 deletions Tree-RB/MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Build.PL
Changes
MANIFEST
META.yml # Will be created by "make dist"
Makefile.PL
README
lib/Tree/RB.pm
lib/Tree/RB/Node.pm
lib/Tree/RB/Node/_Fields.pm
t/00.load.t
t/perlcritic.t
t/pod-coverage.t
t/pod.t
17 changes: 17 additions & 0 deletions Tree-RB/Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Tree::RB',
AUTHOR => 'Arun Prasad <arunbear@cpan.org>',
VERSION_FROM => 'lib/Tree/RB.pm',
ABSTRACT_FROM => 'lib/Tree/RB.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'version' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Tree-RB-*' },
);
47 changes: 47 additions & 0 deletions Tree-RB/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
Tree-RB version 0.0.1

[ REPLACE THIS...

The README is used to introduce the module and provide instructions on
how to install the module, any machine dependencies it may have (for
example C compilers and installed libraries) and any other information
that should be understood before the module is installed.

A README file is required for CPAN modules since CPAN extracts the
README file from a module distribution so that people browsing the
archive can use it get an idea of the modules uses. It is usually a
good idea to provide version information here so that people can
decide whether fixes for the module are worth downloading.
]


INSTALLATION

To install this module, run the following commands:

perl Makefile.PL
make
make test
make install


Alternatively, to install with Module::Build, you can use the following commands:

perl Build.PL
./Build
./Build test
./Build install



DEPENDENCIES

None.


COPYRIGHT AND LICENCE

Copyright (C) 2007, Arun Prasad

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
Loading

0 comments on commit 7ccb161

Please sign in to comment.