API-PureStorage

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      "bugtracker" : {
         "web" : "https://rt.cpan.org/Dist/Display.html?Name=API-PureStorage"
      },
      "repository" : {
         "type" : "git",
         "url" : "git://github.com/bennie/perl-API-PureStorage.git",
         "web" : "http://github.com/bennie/perl-API-PureStorage"
      }
   },
   "version" : "0.03",
   "x_serialization_backend" : "JSON::PP version 2.27202"
}

Makefile.PL  view on Meta::CPAN


WriteMakefile(
  ABSTRACT => "API Wrapper for Pure Storage devices.",
  AUTHOR   => 'Phil Pollard <bennie@cpan.org>',
  LICENSE  => 'artistic_2',
  NAME     => 'API::PureStorage',
  VERSION  => '0.03',

  PREREQ_PM => {
          'REST::Client' => 0,
          'JSON' => 0,
          'Net::SSL' => 0,
          'Test::More' => 0,
          'Test::Simple' => '0'
        },

  ( $ExtUtils::MakeMaker::VERSION < 6.46
        ? ()
        : ( META_MERGE => {
                'meta-spec' => { version => 2 },
                no_index => {directory => [qw/t/]},

config.txt  view on Meta::CPAN


$author  = 'Phil Pollard <bennie@cpan.org>';
$license = 'artistic_2';

$abstract    = 'API Wrapper for Pure Storage devices.';
$description = $abstract;

$perl_ver = '5.006001';

%requires = (
    'JSON' => 0,
    'Net::SSL' => 0,
    'REST::Client' => 0,
    'Test::More' => 0,
    'Test::Simple' => '0',
);

lib/API/PureStorage.pm  view on Meta::CPAN

package API::PureStorage;

use Data::Dumper;
use REST::Client;
use JSON;
use Net::SSL;

use warnings;
use strict;

$API::PureStorage::VERSION = '0.03';

our %ENV;
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;



( run in 0.613 second using v1.01-cache-2.11-cpan-140bd7fdf52 )