Skip to content

Commit

Permalink
Push to github
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescreen10 committed Apr 12, 2012
0 parents commit ab228eb
Show file tree
Hide file tree
Showing 17 changed files with 2,153 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Revision history for Collections

0.01 08/18/2009
First version.

14 changes: 14 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Changes
MANIFEST
Makefile.PL
README
lib/Collections/Ordered.pm
lib/Collections/Set.pm
lib/Collections/Sorted.pm
t/00-load.t
t/01-ordered-basic.t
t/02-ordered.t
t/03-set.t
t/04-sorted.t
t/pod-coverage.t
t/pod.t
18 changes: 18 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'Collections',
AUTHOR => 'Mariano Wahlmann <dichoso@gmail.com>',
VERSION_FROM => 'lib/Collections/Ordered.pm',
ABSTRACT => 'Easy to use iterators',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Exception' => 0,
'Error' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Collections-*' },
);
Loading

0 comments on commit ab228eb

Please sign in to comment.