diff options
| author | franck cuny <franck@lumberjaph.net> | 2009-12-10 14:22:43 +0100 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2009-12-10 14:22:43 +0100 |
| commit | ec1e256bf94d16108f673c17e5e28c24fe225dc4 (patch) | |
| tree | 5002756788385827d5a50cdf2b9ed23259b9f75d /Makefile.PL | |
| download | anyevent-riak-ec1e256bf94d16108f673c17e5e28c24fe225dc4.tar.gz | |
initial commit
Diffstat (limited to '')
| -rw-r--r-- | Makefile.PL | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..3d0a232 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,16 @@ +use inc::Module::Install; +name 'AnyEvent-Riak'; +all_from 'lib/AnyEvent/Riak.pm'; + +# requires ''; +requires 'Moose'; +requires 'Test::Class'; +requires 'Test::Exception'; + +tests 't/*.t'; +author_tests 'xt'; + +build_requires 'Test::More'; +use_test_base; +auto_include; +WriteAll; |
