API-Assembla

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "DateTime::Format::ISO8601" : 0,
            "LWP::Protocol::https" : 0,
            "LWP::UserAgent" : 0,
            "Moose" : 0,
            "URI" : 0,
            "XML::XPath" : 0
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : 0
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "type" : "git",
         "url" : "https://github.com/gphat/api-assembla"
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'Access to Assembla API via Perl.'
author:
  - 'Cory G Watson <gphat@cpan.org>'
build_requires:
  Test::More: 0
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.200007, CPAN::Meta::Converter version 2.110440'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: API-Assembla
requires:

Makefile.PL  view on Meta::CPAN



use ExtUtils::MakeMaker 6.30;



my %WriteMakefileArgs = (
  'ABSTRACT' => 'Access to Assembla API via Perl.',
  'AUTHOR' => 'Cory G Watson <gphat@cpan.org>',
  'BUILD_REQUIRES' => {
    'Test::More' => '0'
  },
  'CONFIGURE_REQUIRES' => {
    'ExtUtils::MakeMaker' => '6.30'
  },
  'DISTNAME' => 'API-Assembla',
  'EXE_FILES' => [],
  'LICENSE' => 'perl',
  'NAME' => 'API::Assembla',
  'PREREQ_PM' => {
    'DateTime::Format::ISO8601' => '0',

t/release-pod-syntax.t  view on Meta::CPAN

#!perl

BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}

use Test::More;

eval "use Test::Pod 1.41";
plan skip_all => "Test::Pod 1.41 required for testing POD" if $@;

all_pod_files_ok();

t/release-synopsis.t  view on Meta::CPAN

#!perl

BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}


use Test::More;

eval "use Test::Synopsis";
plan skip_all => "Test::Synopsis required for testing synopses"
  if $@;
all_synopsis_ok('lib');

t/spaces.t  view on Meta::CPAN

use Test::More;
use strict;

if(!$ENV{'TEST_ASSEMBLA_PASS'}) {
    plan skip_all => 'This test is useless unless you are the author';
}

use API::Assembla;

my $api = API::Assembla->new(
    username => 'iirobot',

t/tickets.t  view on Meta::CPAN

use Test::More;
use strict;

if(!$ENV{'TEST_ASSEMBLA_PASS'}) {
    plan skip_all => 'This test is useless unless you are the author';
}

use API::Assembla;

my $api = API::Assembla->new(
    username => 'iirobot',

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

( run in 1.072 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )