Skip to content

Commit

Permalink
Initial commit - version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mstratman committed Apr 10, 2012
0 parents commit 8d781b4
Show file tree
Hide file tree
Showing 16 changed files with 837 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Build.PL
@@ -0,0 +1,17 @@
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'DateTime::Format::Human::Duration',
license => 'perl',
dist_author => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
dist_version_from => 'lib/DateTime/Format/Human/Duration.pm',
requires => {
'Test::More' => 0,
'version' => 0,
},
add_to_cleanup => [ 'DateTime-Format-Human-Duration-*' ],
);

$builder->create_build_script();
5 changes: 5 additions & 0 deletions Changes
@@ -0,0 +1,5 @@
Revision history for DateTime-Format-Human-Duration

0.0.1 Sun Mar 16 10:54:08 2008
Initial release.

16 changes: 16 additions & 0 deletions MANIFEST
@@ -0,0 +1,16 @@
Build.PL
Changes
MANIFEST
Makefile.PL
README
lib/DateTime/Format/Human/Duration.pm
lib/DateTime/Format/Human/Duration/Locale.pm
lib/DateTime/Format/Human/Duration/Locale/es.pm
lib/DateTime/Format/Human/Duration/Locale/fr.pm
lib/DateTime/Format/Human/Duration/Locale/pt.pm
t/00.load.t
t/01.methods.t
t/perlcritic.t
t/pod-coverage.t
t/pod.t
META.yml Module meta-data (added by MakeMaker)
12 changes: 12 additions & 0 deletions META.yml
@@ -0,0 +1,12 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: DateTime-Format-Human-Duration
version: 0.0.1
version_from: lib/DateTime/Format/Human/Duration.pm
installdirs: site
requires:
Test::More: 0
version: 0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30
17 changes: 17 additions & 0 deletions Makefile.PL
@@ -0,0 +1,17 @@
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
NAME => 'DateTime::Format::Human::Duration',
AUTHOR => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
VERSION_FROM => 'lib/DateTime/Format/Human/Duration.pm',
ABSTRACT_FROM => 'lib/DateTime/Format/Human/Duration.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'version' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DateTime-Format-Human-Duration-*' },
);
33 changes: 33 additions & 0 deletions README
@@ -0,0 +1,33 @@
DateTime-Format-Human-Duration version 0.0.1

DOCUMENTATION

See POD for documentation.

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

See DEPENDENCIES section in POD, 'requires' key in Build.PL,
or 'PREREQ_PM' key in Makefile.PL

COPYRIGHT AND LICENCE

Copyright (C) 2008, Daniel Muey

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

0 comments on commit 8d781b4

Please sign in to comment.