CPAN-Testers-Reports-Query-JSON

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.04 - Thu 11 Feb 2010 07:34:58 GMT
    - Yes, modules used by Tests are needed in the Makefile.PL
    - CPANTesters rock (for picking up stuff like this)

0.03 - Tue  9 Feb 2010 07:41:22 GMT
    - add namespace::autoclean to dependencies!

0.02 - Mon  8 Feb 2010 20:22:28 GMT
    - add namespace::autoclean
    - make immutable
    - distribution is required - obviously!
    - cleanup _build_current_version()
    - cleanup pod, add some for Set.pm as well

0.01 - Sun  7 Feb 2010 21:00:30 GMT
	- Initial release

META.yml  view on Meta::CPAN

    ExtUtils::MakeMaker:  0
build_requires:
    ExtUtils::MakeMaker:  0
requires:
    Carp:                 0
    CPAN::Testers::WWW::Reports::Parser:  0.02
    File::Slurp:          0
    JSON::Any:            0
    LWP::Simple:          0
    Moose:                0
    namespace::autoclean:  0.09
    Test::More:           0
    version:              0
no_index:
    directory:
        - t
        - inc
generated_by:       ExtUtils::MakeMaker version 6.56
meta-spec:
    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
    version:  1.4

Makefile.PL  view on Meta::CPAN


WriteMakefile(
    NAME         => 'CPAN::Testers::Reports::Query::JSON',
    VERSION_FROM => 'lib/CPAN/Testers/Reports/Query/JSON.pm',
    PREREQ_PM    => {
        'Carp'                                => 0,
        'CPAN::Testers::WWW::Reports::Parser' => 0.02,
        'JSON::Any'                           => 0,
        'LWP::Simple'                         => 0,
        'Moose'                               => 0,
        'namespace::autoclean'                => 0.09,
        'Test::More'                          => 0,
        'File::Slurp'                         => 0,
        'version'                             => 0,
    },
);

lib/CPAN/Testers/Reports/Query/JSON.pm  view on Meta::CPAN

package CPAN::Testers::Reports::Query::JSON;

use Moose;
use namespace::autoclean;

use version;
use LWP::Simple;
use CPAN::Testers::WWW::Reports::Parser;
use CPAN::Testers::Reports::Query::JSON::Set;

our $VERSION = '0.04';

has distribution    => ( isa => 'Str', is => 'ro', required   => 1 );
has version         => ( isa => 'Str', is => 'rw' );

lib/CPAN/Testers/Reports/Query/JSON/Set.pm  view on Meta::CPAN

package CPAN::Testers::Reports::Query::JSON::Set;

use Moose;
use namespace::autoclean;

has name           => ( isa => 'Str', is => 'ro', default => 'no-name' );
has total_tests    => ( isa => 'Int', is => 'rw', default => 0 );
has number_passed  => ( isa => 'Int', is => 'rw', default => 0 );
has number_failed  => ( isa => 'Str', is => 'rw', default => 0 );
has percent_passed => ( isa => 'Str', is => 'rw', default => 0 );
has data => ( isa => 'ArrayRef', is => 'rw', );

sub BUILD {
    my $self = shift;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.317 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )