Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
judofyr committed Jan 30, 2012
1 parent 8ded956 commit ddd5a3f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
MYMETA.*
blib
Makefile
23 changes: 23 additions & 0 deletions Makefile.PL
@@ -0,0 +1,23 @@
use 5.010001;

use strict;
use warnings;

use ExtUtils::MakeMaker;

my ($mm) = $ExtUtils::MakeMaker::VERSION =~ /^([^_]+)/;

WriteMakefile(
NAME => 'Parallol',
VERSION_FROM => 'lib/Parallol.pm',
ABSTRACT => 'Because parallel requests should be as fun as parallololololol!',
AUTHOR => 'Magnus Holm <judofyr@gmail.com>',

($mm < 6.3002 ? () : ('LICENSE' => 'artistic_2')),

PREREQ_PM => {
'Mojolicious' => 0,
},
test => {TESTS => 't/*.t'}
);

2 changes: 2 additions & 0 deletions lib/Parallol.pm
Expand Up @@ -2,6 +2,8 @@ package Parallol;

use Mojo::Base -base;

our $VERSION = '1.00';

has on_done => sub { sub { } };

sub do {
Expand Down

0 comments on commit ddd5a3f

Please sign in to comment.