Skip to content

Commit

Permalink
updated Makefile.PL for version 2 of the CPAN distribution metadata s…
Browse files Browse the repository at this point in the history
…pecification
  • Loading branch information
kraih committed Sep 21, 2014
1 parent fe42242 commit f25efce
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@

5.43 2014-09-21
- Updated Makefile.PL for version 2 of the CPAN distribution metadata
specification.

5.42 2014-09-17
- Fixed url_for bug where an unnecessary slash could be rendered before
Expand Down
15 changes: 9 additions & 6 deletions Makefile.PL
Expand Up @@ -16,12 +16,15 @@ WriteMakefile(
META_MERGE => {
requires => {perl => '5.010001'},
resources => {
homepage => 'http://mojolicio.us',
license => 'http://www.opensource.org/licenses/artistic-license-2.0',
MailingList => 'http://groups.google.com/group/mojolicious',
repository => 'http://github.com/kraih/mojo',
bugtracker => 'http://github.com/kraih/mojo/issues',
x_IRC => 'irc://irc.perl.org/#mojo'
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
homepage => 'http://mojolicio.us',
bugtracker => {web => 'https://github.com/kraih/mojo/issues'},
repository => {
url => 'https://github.com/kraih/mojo.git',
web => 'https://github.com/kraih/mojo',
type => 'git'
},
x_IRC => 'irc://irc.perl.org/#mojo'
},
no_index => {directory => ['t']}
},
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -62,8 +62,8 @@ app->start;

## Duct tape for the HTML5 web

Use the latest Perl and HTML features in single file prototypes like this
one and grow them easily into well-structured applications.
Use all the latest Perl and HTML features in single file prototypes like
this one and grow them easily into well-structured applications.

```perl
use Mojolicious::Lite;
Expand Down

0 comments on commit f25efce

Please sign in to comment.