File-ShareDir-Tarball
view release on metacpan or search on metacpan
my %module_build_args = (
"build_requires" => {
"File::Find" => 0,
"Module::Build" => "0.3601",
"Test::File::ShareDir" => "v0.3.0",
"Test::More" => "0.88"
},
"configure_requires" => {
"Module::Build" => "0.3601"
},
"dist_abstract" => "Deal transparently with shared files distributed as tarballs",
"dist_author" => [
"Yanick Champoux <yanick\@babyl.dyndns.org>"
],
"dist_name" => "File-ShareDir-Tarball",
"dist_version" => "0.2.2",
"license" => "perl",
"module_name" => "File::ShareDir::Tarball",
"recommends" => {},
"recursive_test_files" => 1,
"requires" => {
{
"abstract" : "Deal transparently with shared files distributed as tarballs",
"author" : [
"Yanick Champoux <yanick@babyl.dyndns.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
---
abstract: 'Deal transparently with shared files distributed as tarballs'
author:
- 'Yanick Champoux <yanick@babyl.dyndns.org>'
build_requires:
File::Find: 0
Module::Build: 0.3601
Test::File::ShareDir: v0.3.0
Test::More: 0.88
configure_requires:
Module::Build: 0.3601
dynamic_config: 0
NAME
File::ShareDir::Tarball - Deal transparently with shared files
distributed as tarballs
VERSION
version 0.2.2
SYNOPSIS
use File::ShareDir::Tarball ':all';
# use exactly like File::ShareDir
$dir = dist_dir('File-ShareDir');
README.mkdn view on Meta::CPAN
# NAME
File::ShareDir::Tarball - Deal transparently with shared files distributed as tarballs
# VERSION
version 0.2.2
# SYNOPSIS
use File::ShareDir::Tarball ':all';
# use exactly like File::ShareDir
lib/File/ShareDir/Tarball.pm view on Meta::CPAN
package File::ShareDir::Tarball;
BEGIN {
$File::ShareDir::Tarball::AUTHORITY = 'cpan:YANICK';
}
{
$File::ShareDir::Tarball::VERSION = '0.2.2';
}
# ABSTRACT: Deal transparently with shared files distributed as tarballs
use strict;
use warnings;
use parent qw/ Exporter /;
use Carp;
use File::ShareDir;
lib/File/ShareDir/Tarball.pm view on Meta::CPAN
1;
__END__
=pod
=head1 NAME
File::ShareDir::Tarball - Deal transparently with shared files distributed as tarballs
=head1 VERSION
version 0.2.2
=head1 SYNOPSIS
use File::ShareDir::Tarball ':all';
# use exactly like File::ShareDir
( run in 0.331 second using v1.01-cache-2.11-cpan-0a6323c29d9 )