Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ MANIFEST*
!MANIFEST.SKIP
pm_to_blib
Makefile
MYMETA.json
MYMETA.yml
_eumm
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
^pm_to_blib
.*\.old$
^Makefile$
^MYMETA\.(?:json|yml)$
^\.git
^_eumm/
^MojoX-JSON-RPC-[0-9]
~$
Empty file modified Makefile.PL
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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<http://groups.google.com/group/json-rpc/web/json-rpc-2-0>.
Expand Down
8 changes: 4 additions & 4 deletions lib/MojoX/JSON/RPC.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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<Mojolicious::Plugin::JsonRpcDispatcher>):
Server as a plugin (L<Mojolicious::Plugin::JsonRpcDispatcher>):

#!/usr/bin/env perl
use Mojolicious::Lite;
Expand Down Expand Up @@ -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<http://groups.google.com/group/json-rpc/web/json-rpc-2-0>.
Expand Down