The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Mojolicious::Plugin::JSUrlFor',
    VERSION_FROM  => 'lib/Mojolicious/Plugin/JSUrlFor.pm',
    ABSTRACT_FROM => 'lib/Mojolicious/Plugin/JSUrlFor.pm',
    AUTHOR    => 'Viktor Turskyi <koorchik@cpan.org>',
    PREREQ_PM => { 'Mojolicious' => '1.90' },
    test      => { TESTS => 't/*.t' },
    dist      => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Mojolicious-Plugin-JSUrlFor-*' },
);