diff --git a/.gitignore b/.gitignore index 355723e..d77561f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,6 @@ MANIFEST* !MANIFEST.SKIP pm_to_blib Makefile +MYMETA.json +MYMETA.yml +_eumm diff --git a/Changes b/Changes index 79b748e..a280322 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ This file documents the revision history for Perl extension MojoX::JSON::RPC. +0.09 Unknown + - Remove executable flag from "Makefile.PL". + - CPANTS Kwalitee and good practice. + - Put MYMETA.yml and MYMETA.json in MANIFEST.SKIP + - Also remove them from the distribution. + - Kwalitee and good practice. + 0.08 2015-02-08 00:00:00 - Fixed typo in credit - Bumped version. 0.0.7 was packaged incorrectly. diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 3bc5974..42c146d 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -2,4 +2,8 @@ ^pm_to_blib .*\.old$ ^Makefile$ +^MYMETA\.(?:json|yml)$ ^\.git +^_eumm/ +^MojoX-JSON-RPC-[0-9] +~$ diff --git a/Makefile.PL b/Makefile.PL old mode 100755 new mode 100644 diff --git a/README.pod b/README.pod index b90daf3..f2c64ba 100644 --- a/README.pod +++ b/README.pod @@ -3,7 +3,7 @@ =head1 NAME -MojoX::JSON::RPC - Perl implementation of JSON-RPC 2.0 protocol for Mojolicious +MojoX::JSON::RPC - a Perl implementation of the JSON-RPC 2.0 protocol for Mojolicious =head1 SYNOPSIS @@ -94,8 +94,8 @@ Non-blocking client: =head1 DESCRIPTION -This module implments a client and a server plugin for JSON-RPC 2.0 for use -with Mojolicious. +This module implments a client plugin and a server plugin for JSON-RPC 2.0 for +use with Mojolicious. This module follows the draft specficiation for JSON-RPC 2.0. More information can be found at L. diff --git a/lib/MojoX/JSON/RPC.pm b/lib/MojoX/JSON/RPC.pm index cc9b9d4..9aec7a7 100644 --- a/lib/MojoX/JSON/RPC.pm +++ b/lib/MojoX/JSON/RPC.pm @@ -10,11 +10,11 @@ __END__ =head1 NAME -MojoX::JSON::RPC - Perl implementation of JSON-RPC 2.0 protocol for Mojolicious +MojoX::JSON::RPC - a Perl implementation of the JSON-RPC 2.0 protocol for Mojolicious =head1 SYNOPSIS -Server as plugin (L): +Server as a plugin (L): #!/usr/bin/env perl use Mojolicious::Lite; @@ -101,8 +101,8 @@ Non-blocking client: =head1 DESCRIPTION -This module implments a client and a server plugin for JSON-RPC 2.0 for use -with Mojolicious. +This module implments a client plugin and a server plugin for JSON-RPC 2.0 for +use with Mojolicious. This module follows the draft specficiation for JSON-RPC 2.0. More information can be found at L.