Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
cooldaemon committed Dec 9, 2009
0 parents commit 23e94c5
Show file tree
Hide file tree
Showing 25 changed files with 5,384 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
cover_db
META.yml
Makefile
blib
inc
pm_to_blib
MANIFEST
Makefile.old
2 changes: 2 additions & 0 deletions .shipit
@@ -0,0 +1,2 @@
steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist
svk.tagpattern = release-%v
4 changes: 4 additions & 0 deletions Changes
@@ -0,0 +1,4 @@
Revision history for Perl extension RabbitFoot

0.01 Sun Dec 6 20:54:03 2009
- original version
19 changes: 19 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,19 @@
\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$
21 changes: 21 additions & 0 deletions Makefile.PL
@@ -0,0 +1,21 @@
use inc::Module::Install;
name 'RabbitFoot';
all_from 'lib/RabbitFoot.pm';

requires 'Moose';
requires 'MooseX::App::Cmd';
requires 'MooseX::ConfigFromFile';
requires 'Config::Any';
requires 'JSON::Syck';
requires 'List::MoreUtils';
requires 'Sys::SigAction';
requires 'Net::AMQP';

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

build_requires 'Test::More';
build_requires 'Test::Exception';
use_test_base;
auto_include;
WriteAll;
27 changes: 27 additions & 0 deletions README
@@ -0,0 +1,27 @@
This is Perl module RabbitFoot.

INSTALLATION

RabbitFoot installation is straightforward. If your CPAN shell is set up,
you should just be able to do

% cpan RabbitFoot

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

% perl Makefile.PL
% make && make test

Then install it:

% make install

DOCUMENTATION

RabbitFoot documentation is available as in POD. So you can do:

% perldoc RabbitFoot

to read the documentation online with your favorite pager.

Masahito Ikuta

0 comments on commit 23e94c5

Please sign in to comment.