Acme-Globus
view release on metacpan or search on metacpan
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::More" : "0",
"Test::Pod" : "1.41"
}
},
"runtime" : {
"requires" : {
"Carp" : "0",
"JSON" : "0",
"Net::OpenSSH" : "0"
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"class" : "Dist::Zilla::Plugin::MetaNoIndex",
"name" : "@Starter/MetaNoIndex",
"version" : "6.009"
},
{
"class" : "Dist::Zilla::Plugin::MetaYAML",
"name" : "@Starter/MetaYAML",
"version" : "6.009"
},
{
"class" : "Dist::Zilla::Plugin::MetaJSON",
"name" : "@Starter/MetaJSON",
"version" : "6.009"
},
{
"class" : "Dist::Zilla::Plugin::License",
"name" : "@Starter/License",
"version" : "6.009"
},
{
"class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod",
"config" : {
}
],
"zilla" : {
"class" : "Dist::Zilla::Dist::Builder",
"config" : {
"is_trial" : "0"
},
"version" : "6.009"
}
},
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0233"
}
- inc
- share
- t
- xt
provides:
Acme::Globus:
file: lib/Acme/Globus.pm
version: '0.001'
requires:
Carp: '0'
JSON: '0'
Net::OpenSSH: '0'
version: '0.001'
x_Dist_Zilla:
perl:
version: '5.022001'
plugins:
-
class: Dist::Zilla::Plugin::Prereqs::FromCPANfile
name: Prereqs::FromCPANfile
version: '0.08'
version: '2.004003'
-
class: Dist::Zilla::Plugin::MetaNoIndex
name: '@Starter/MetaNoIndex'
version: '6.009'
-
class: Dist::Zilla::Plugin::MetaYAML
name: '@Starter/MetaYAML'
version: '6.009'
-
class: Dist::Zilla::Plugin::MetaJSON
name: '@Starter/MetaJSON'
version: '6.009'
-
class: Dist::Zilla::Plugin::License
name: '@Starter/License'
version: '6.009'
-
class: Dist::Zilla::Plugin::ReadmeAnyFromPod
config:
Dist::Zilla::Role::FileWatcher:
version: '0.006'
Makefile.PL view on Meta::CPAN
"ABSTRACT" => "Interface to the Globus research data sharing service",
"AUTHOR" => "Dave Jacoby <jacoby.david\@gmail.com>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Acme-Globus",
"LICENSE" => "perl",
"NAME" => "Acme::Globus",
"PREREQ_PM" => {
"Carp" => 0,
"JSON" => 0,
"Net::OpenSSH" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => 0
},
"VERSION" => "0.001",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"JSON" => 0,
"Net::OpenSSH" => 0,
"Test::More" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
You can read the nicely formatted version of the documentation for this module
https://metacpan.org/pod/Acme::Globus
You should be able to install this using your usual method for installing
modules from CPAN. If you don't have one, have a look at:
http://www.cpan.org/modules/INSTALL.html
Acme::Globus requires JSON and Net::OpenSSH.
Copyright (C) 2017, Dave Jacoby.
This program is free software, you can redistribute it and/or modify it
under the terms of the Artistic License version 2.0.
requires 'Carp';
requires 'JSON';
requires 'Net::OpenSSH';
lib/Acme/Globus.pm view on Meta::CPAN
package Acme::Globus;
# ABSTRACT: Interface to the Globus research data sharing service
use strict;
use warnings;
use Carp ;
use JSON ;
use Net::OpenSSH ;
=pod
=head1 NAME
Globus - Object-Oriented interface to Globus
=head1 DESCRIPTION
t/00-report-prereqs.dd view on Meta::CPAN
'File::Spec' => '0',
'IO::Handle' => '0',
'IPC::Open3' => '0',
'Test::More' => '0',
'Test::Pod' => '1.41'
}
},
'runtime' => {
'requires' => {
'Carp' => '0',
'JSON' => '0',
'Net::OpenSSH' => '0'
}
},
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900'
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
( run in 1.118 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )