AWS-IP

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "JSON::XS" : "0",
            "Net::CIDR::Set" : "0",
            "Net::SSLeay" : "1.49",
            "constant" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : "0"
         }
      }
   },
   "release_status" : "stable",
   "version" : 0.04,
   "x_serialization_backend" : "JSON::PP version 2.27400_02"
}

META.yml  view on Meta::CPAN

---
abstract: 'Get and search AWS IP ranges in a caching, auto-refreshing way'
author:
  - 'David Farrell <dnmfarrell@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: '0'
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: AWS-IP
no_index:

Makefile.PL  view on Meta::CPAN

    "HTTP::Tiny" => 0,
    "IO::Socket::SSL" => "1.56",
    "JSON::XS" => 0,
    "Net::CIDR::Set" => 0,
    "Net::SSLeay" => "1.49",
    "constant" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0
  },
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "Cache::File" => 0,
  "Carp" => 0,
  "File::Temp" => 0,
  "HTTP::Tiny" => 0,
  "IO::Socket::SSL" => "1.56",
  "JSON::XS" => 0,
  "Net::CIDR::Set" => 0,
  "Net::SSLeay" => "1.49",
  "Test::More" => 0,
  "constant" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;

t/aws.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

my $test_data = do {
  open my $test_fh, '<', 't/ip-ranges.json' or die $!;
  local $/;
  <$test_fh>;
};

# loads ok
use_ok('AWS::IP', 'load module');
ok my $aws = AWS::IP->new(600), 'constructor';

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

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