Add final standings for 2015
[gruntmaster-page.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Plack::App::Gruntmaster',
6 VERSION_FROM => 'lib/Plack/App/Gruntmaster.pm',
7 ABSTRACT_FROM => 'lib/Plack/App/Gruntmaster.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'AGPL_3',
11 SIGN => 1,
12 clean => {
13 FILES => 'static/css/ static/js.js static/js.js.gz css/logos.css static/logos.png static/js.map static/js/'
14 },
15 BUILD_REQUIRES => {
16 qw/CSS::Minifier::XS 0
17 CSS::SpriteMaker 0
18 File::Slurp 0
19 JavaScript::Minifier::XS 0
20 Test::MockTime 0
21 Test::More 0
22 Test::WWW::Mechanize::PSGI 0/,
23 },
24 PREREQ_PM => {
25 qw/Carp 0
26 Encode 0
27 List::Util 0
28 POSIX 0
29 constant 0
30 feature 0
31 parent 0
32 strict 0
33 warnings 0
34
35 File::Slurp 0
36 Gruntmaster::Data 0
37 HTML::Element::Library 0
38 HTML::TreeBuilder 0
39 JSON::MaybeXS 0
40 Log::Log4perl 0
41 PerlX::Maybe 0
42 Plack::Builder 0
43 Plack::Middleware::Auth::Complex 0
44 Plack::Util 0
45 Scope::Upper 0
46 Web::Simple 0.019/,
47 },
48 META_MERGE => {
49 dynamic_config => 0,
50 resources => {
51 repository => 'https://git.ieval.ro/?p=plack-app-gruntmaster.git',
52 }
53 }
54 )
This page took 0.021664 seconds and 4 git commands to generate.