File-ShareDir-Tarball

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "Deal transparently with shared files distributed as tarballs",
   "author" : [
      "Yanick Champoux <yanick@babyl.dyndns.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 6.033, CPAN::Meta::Converter version 2.150010",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
abstract: 'Deal transparently with shared files distributed as tarballs'
author:
  - 'Yanick Champoux <yanick@babyl.dyndns.org>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Test2::V0: '0'
  Test::File::ShareDir: v0.3.0
  Test::More: '0'

Makefile.PL  view on Meta::CPAN

# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.033.
use strict;
use warnings;

use 5.006;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Deal transparently with shared files distributed as tarballs",
  "AUTHOR" => "Yanick Champoux <yanick\@babyl.dyndns.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "File-ShareDir-Tarball",
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "File::ShareDir::Tarball",
  "PREREQ_PM" => {
    "Archive::Tar" => 0,

README.mkdn  view on Meta::CPAN

# NAME

File::ShareDir::Tarball - Deal transparently with shared files distributed as tarballs

# VERSION

version 0.3.0

# SYNOPSIS

```perl
use File::ShareDir::Tarball ':all';

doap.xml  view on Meta::CPAN

<?xml version="1.0" encoding="UTF-8" ?>
<Project
  xmlns="http://usefulinc.com/ns/doap#"
  xmlns:dc="http://purl.org/dc/terms/"
  xmlns:foaf="http://xmlns.com/foaf/0.1/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  >
  <name>File-ShareDir-Tarball</name>
  <shortdesc>Deal transparently with shared files distributed as tarballs</shortdesc>
  <developer>
    <foaf:Person>
      <foaf:name>Yanick Champoux</foaf:name>
      <foaf:mbox rdf:resource="mailto:yanick@babyl.dyndns.org" />
    </foaf:Person>
  </developer>
  <helper>
    <foaf:Person>
      <foaf:name>Yanick Champoux</foaf:name>
      <foaf:mbox rdf:resource="mailto:yanick@babyl.ca" />

lib/File/ShareDir/Tarball.pm  view on Meta::CPAN

package File::ShareDir::Tarball;
our $AUTHORITY = 'cpan:YANICK';
# ABSTRACT: Deal transparently with shared files distributed as tarballs
$File::ShareDir::Tarball::VERSION = '0.3.0';

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

=encoding UTF-8

=head1 NAME

File::ShareDir::Tarball - Deal transparently with shared files distributed as tarballs

=head1 VERSION

version 0.3.0

=head1 SYNOPSIS

    use File::ShareDir::Tarball ':all';

    # use exactly like File::ShareDir



( run in 1.399 second using v1.01-cache-2.11-cpan-0bb4e1dffa6 )