Add a very basic test
[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/'
14 },
15 BUILD_REQUIRES => {
16 qw/CSS::Minifier::XS 0
17 File::Slurp 0
18 Test::More 0
19 Test::WWW::Mechanize::PSGI 0/,
20 },
21 PREREQ_PM => {
22 qw/Carp 0
23 Encode 0
24 List::Util 0
25 POSIX 0
26 constant 0
27 feature 0
28 parent 0
29 strict 0
30 warnings 0
31
32 File::Slurp 0
33 File::Which 0
34 Gruntmaster::Data 0
35 HTML::Element::Library 0
36 HTML::TreeBuilder 0
37 JSON::MaybeXS 0
38 Log::Log4perl 0
39 PerlX::Maybe 0
40 Plack::Builder 0
41 Plack::Middleware::Auth::Complex 0
42 Plack::Util 0
43 Scope::Upper 0
44 Sort::ByExample 0
45 Web::Simple 0.019/,
46 },
47 META_MERGE => {
48 dynamic_config => 0,
49 resources => {
50 repository => 'https://git.ieval.ro/?p=plack-app-gruntmaster.git',
51 }
52 }
53 )
This page took 0.021572 seconds and 4 git commands to generate.