Permalink
Please sign in to comment.
Showing
with
5,384 additions
and 0 deletions.
- +8 −0 .gitignore
- +2 −0 .shipit
- +4 −0 Changes
- +19 −0 MANIFEST.SKIP
- +21 −0 Makefile.PL
- +27 −0 README
- +3,908 −0 amqp0-8.xml
- +7 −0 config.json
- +657 −0 lib/RabbitFoot.pm
- +9 −0 lib/RabbitFoot/Cmd.pm
- +74 −0 lib/RabbitFoot/Cmd/Command/bind_queue.pm
- +98 −0 lib/RabbitFoot/Cmd/Command/declare_exchange.pm
- +82 −0 lib/RabbitFoot/Cmd/Command/declare_queue.pm
- +51 −0 lib/RabbitFoot/Cmd/Command/delete_exchange.pm
- +61 −0 lib/RabbitFoot/Cmd/Command/delete_queue.pm
- +41 −0 lib/RabbitFoot/Cmd/Command/purge_queue.pm
- +131 −0 lib/RabbitFoot/Cmd/Role/Command.pm
- +35 −0 lib/RabbitFoot/Cmd/Role/Config.pm
- +11 −0 rabbit_foot
- +13 −0 t/00_compile.t
- +13 −0 xt/01_podspell.t
- +8 −0 xt/02_perlcritic.t
- +4 −0 xt/03_pod.t
- +92 −0 xt/04_use_server.t
- +8 −0 xt/perlcriticrc
@@ -0,0 +1,8 @@ | ||
+cover_db | ||
+META.yml | ||
+Makefile | ||
+blib | ||
+inc | ||
+pm_to_blib | ||
+MANIFEST | ||
+Makefile.old |
2
.shipit
@@ -0,0 +1,2 @@ | ||
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist | ||
+svk.tagpattern = release-%v |
4
Changes
@@ -0,0 +1,4 @@ | ||
+Revision history for Perl extension RabbitFoot | ||
+ | ||
+0.01 Sun Dec 6 20:54:03 2009 | ||
+ - original version |
@@ -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
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
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 |

Oops, something went wrong.
0 comments on commit
23e94c5