initial commit

This commit is contained in:
Pedro Melo
2014-07-19 21:46:05 +01:00
commit 4dbb22b847
6 changed files with 38 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
/AnyEvent-NSQ-*
.build
.prove
perltidy.LOG

2
.proverc Normal file
View File

@@ -0,0 +1,2 @@
--state=save
-l

11
.travis.yml Normal file
View File

@@ -0,0 +1,11 @@
language: perl
perl:
- "5.16"
- "5.14"
- "5.12"
- "5.10"
before_install:
- "git config --global github.user melo"
- "cpanm --quiet --notest Dist::Zilla::PluginBundle::Author::MELO"
install: "dzil authordeps | xargs cpanm --quiet --notest && dzil listdeps | xargs cpanm --quiet --notest"
script: "dzil test --release"

4
Changes Normal file
View File

@@ -0,0 +1,4 @@
Revision history for AnyEvent-NSQ
{{$NEXT}}
* Initial release

7
dist.ini Normal file
View File

@@ -0,0 +1,7 @@
name = AnyEvent-NSQ
author = Pedro Melo <melo@cpan.org>
license = Artistic_2_0
copyright_holder = Pedro Melo
copyright_year = 2014
[@Author::MELO]

10
lib/AnyEvent/NSQ.pm Normal file
View File

@@ -0,0 +1,10 @@
package { {$name} };
# ABSTRACT: a very cool module
# VERSION
# AUTHORITY
use strict;
use warnings;
1;