Net-StackExchange

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

use strict;
use warnings;

use Module::Build 0.3601;


my %module_build_args = (
  'build_requires' => {
    'ExtUtils::MakeMaker' => '6.31',
    'Module::Build' => '0.3601',
    'Test::Differences' => '0',
    'Test::More' => '0.94'
  },
  'configure_requires' => {
    'ExtUtils::MakeMaker' => '6.31',
    'Module::Build' => '0.3601'
  },
  'dist_abstract' => 'Access Stack Exchange API from Perl',
  'dist_author' => [
    'Alan Haggai Alavi <alanhaggai@alanhaggai.org>'
  ],

META.yml  view on Meta::CPAN

---
abstract: 'Access Stack Exchange API from Perl'
author:
  - 'Alan Haggai Alavi <alanhaggai@alanhaggai.org>'
build_requires:
  ExtUtils::MakeMaker: 6.31
  Module::Build: 0.3601
  Test::Differences: 0
  Test::More: 0.94
configure_requires:
  ExtUtils::MakeMaker: 6.31
  Module::Build: 0.3601
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.102341, CPAN::Meta::Converter version 2.102400'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker 6.31;



my %WriteMakefileArgs = (
  'ABSTRACT' => 'Access Stack Exchange API from Perl',
  'AUTHOR' => 'Alan Haggai Alavi <alanhaggai@alanhaggai.org>',
  'BUILD_REQUIRES' => {
    'ExtUtils::MakeMaker' => '6.31',
    'Module::Build' => '0.3601',
    'Test::Differences' => '0',
    'Test::More' => '0.94'
  },
  'CONFIGURE_REQUIRES' => {
    'ExtUtils::MakeMaker' => '6.31',
    'Module::Build' => '0.3601'
  },
  'DISTNAME' => 'Net-StackExchange',
  'EXE_FILES' => [],
  'LICENSE' => 'perl',
  'NAME' => 'Net::StackExchange',

dist.ini  view on Meta::CPAN

[Repository]
git_remote  = origin
github_http = 1

[ModuleBuild]

[Prereqs / BuildRequires]
Module::Build       = 0.3601
ExtUtils::MakeMaker = 6.31
[Prereqs / TestRequires]
Test::Differences = 0
Test::More        = 0.94
[Prereqs]
Carp                         = 0
JSON                         = 0
LWP::UserAgent               = 0
Moose                        = 0
Moose::Role                  = 0
Moose::Util::TypeConstraints = 0
Scalar::Util                 = 0
URI::Escape                  = 0

t/10.answers.t  view on Meta::CPAN

use strict;
use warnings;

use Test::More tests => 13;
use Test::Differences;

use Net::StackExchange;

my $se = Net::StackExchange->new( {
    'network' => 'stackoverflow.com',
    'version' => '1.0',
} );

my $answers_route = $se->route('answers');
isa_ok( $answers_route, 'Net::StackExchange::Route' );



( run in 0.341 second using v1.01-cache-2.11-cpan-131fc08a04b )