Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Jan 3, 2010
0 parents commit d3d8057
Show file tree
Hide file tree
Showing 12 changed files with 137 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
cover_db
META.yml
Makefile
blib
inc
pm_to_blib
MANIFEST
Makefile.old
nytprof.out
MANIFEST.bak
*.sw[po]
1 change: 1 addition & 0 deletions .shipit
@@ -0,0 +1 @@
steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN
4 changes: 4 additions & 0 deletions Changes
@@ -0,0 +1,4 @@
Revision history for Perl extension Task::BeLike::GFUJI

0.01 Sun Jan 3 13:55:58 2010
- original version
21 changes: 21 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,21 @@
\bRCS\b
\bCVS\b
^MANIFEST\.
^Makefile$
~$
^#
\.old$
^blib/
^pm_to_blib
^MakeMaker-\d
\.gz$
\.cvsignore
^t/9\d_.*\.t
^t/perlcritic
^tools/
\.svn/
^[^/]+\.yaml$
^[^/]+\.pl$
^\.shipit$
^\.git/
\.sw[po]$
13 changes: 13 additions & 0 deletions Makefile.PL
@@ -0,0 +1,13 @@
use inc::Module::Install;
name 'Task-BeLike-GFUJI';
all_from 'lib/Task/BeLike/GFUJI.pm';

# requires '';

tests 't/*.t';
author_tests 'xt';

test_requires 'Test::More';
auto_set_repository;
auto_include;
WriteAll;
27 changes: 27 additions & 0 deletions README
@@ -0,0 +1,27 @@
This is Perl module Task::BeLike::GFUJI.

INSTALLATION

Task::BeLike::GFUJI installation is straightforward. If your CPAN shell is set up,
you should just be able to do

% cpan Task::BeLike::GFUJI

Download it, unpack it, then build it as per the usual:

% perl Makefile.PL
% make && make test

Then install it:

% make install

DOCUMENTATION

Task::BeLike::GFUJI documentation is available as in POD. So you can do:

% perldoc Task::BeLike::GFUJI

to read the documentation online with your favorite pager.

Goro Fuji
32 changes: 32 additions & 0 deletions lib/Task/BeLike/GFUJI.pm
@@ -0,0 +1,32 @@
package Task::BeLike::GFUJI;
use strict;
use warnings;
our $VERSION = '0.01';

1;
__END__
=head1 NAME
Task::BeLike::GFUJI -
=head1 SYNOPSIS
use Task::BeLike::GFUJI;
=head1 DESCRIPTION
Task::BeLike::GFUJI is
=head1 AUTHOR
Goro Fuji E<lt>gfuji@cpan.orgE<gt>
=head1 SEE ALSO
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
4 changes: 4 additions & 0 deletions t/00_compile.t
@@ -0,0 +1,4 @@
use strict;
use Test::More tests => 1;

BEGIN { use_ok 'Task::BeLike::GFUJI' }
10 changes: 10 additions & 0 deletions xt/01_podspell.t
@@ -0,0 +1,10 @@
use Test::More;
eval q{ use Test::Spelling };
plan skip_all => "Test::Spelling is not installed." if $@;
add_stopwords(map { split /[\s\:\-]/ } <DATA>);
$ENV{LANG} = 'C';
all_pod_files_spelling_ok('lib');
__DATA__
Goro Fuji
gfuji@cpan.org
Task::BeLike::GFUJI
8 changes: 8 additions & 0 deletions xt/02_perlcritic.t
@@ -0,0 +1,8 @@
use strict;
use Test::More;
eval {
require Test::Perl::Critic;
Test::Perl::Critic->import( -profile => 'xt/perlcriticrc');
};
plan skip_all => "Test::Perl::Critic is not installed." if $@;
all_critic_ok('lib');
4 changes: 4 additions & 0 deletions xt/03_pod.t
@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
2 changes: 2 additions & 0 deletions xt/perlcriticrc
@@ -0,0 +1,2 @@
[TestingAndDebugging::ProhibitNoStrict]
allow=refs

0 comments on commit d3d8057

Please sign in to comment.