File-XDG
view release on metacpan or search on metacpan
"Test::Pod::Coverage" : "0",
"Test::Spelling" : "0",
"Test::Strict" : "0",
"YAML" : "0"
}
},
"runtime" : {
"requires" : {
"File::Path" : "2.07",
"Path::Tiny" : "0",
"Ref::Util" : "0",
"perl" : "5.006"
}
},
"test" : {
"requires" : {
"File::Path" : "2.07",
"File::Temp" : "0",
"Path::Class" : "0.26",
"Test::More" : "0.98",
"perl" : "5.006"
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.032, 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: File-XDG
requires:
File::Path: '2.07'
Path::Tiny: '0'
Ref::Util: '0'
perl: '5.006'
resources:
bugtracker: https://github.com/uperl/File-XDG/issues
homepage: https://metacpan.org/pod/File::XDG
repository: git://github.com/uperl/File-XDG.git
version: '1.03'
x_contributors:
- 'SÃle Ekaterin Aman'
- 'Graham Ollis <plicease@cpan.org>'
x_generated_by_perl: v5.40.0
Makefile.PL view on Meta::CPAN
"DISTNAME" => "File-XDG",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "File::XDG",
"PM" => {
"lib/File/XDG.pm" => "\$(INST_LIB)/File/XDG.pm"
},
"PREREQ_PM" => {
"File::Path" => "2.07",
"Path::Tiny" => 0,
"Ref::Util" => 0
},
"TEST_REQUIRES" => {
"File::Path" => "2.07",
"File::Temp" => 0,
"Path::Class" => "0.26",
"Test::More" => "0.98"
},
"VERSION" => "1.03",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"File::Path" => "2.07",
"File::Temp" => 0,
"Path::Class" => "0.26",
"Path::Tiny" => 0,
"Ref::Util" => 0,
"Test::More" => "0.98"
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
lib/File/XDG.pm view on Meta::CPAN
package File::XDG;
use strict;
use warnings;
use Carp ();
use Config;
use Ref::Util qw( is_coderef is_arrayref );
use if $^O eq 'MSWin32', 'Win32';
# ABSTRACT: Basic implementation of the XDG base directory specification
our $VERSION = '1.03'; # VERSION
sub new {
my $class = shift;
t/00_diag.t view on Meta::CPAN
my %modules;
my $post_diag;
$modules{$_} = $_ for qw(
ExtUtils::MakeMaker
File::Path
File::Temp
Path::Class
Path::Tiny
Ref::Util
Test::More
);
my @modules = sort keys %modules;
sub spacer ()
{
diag '';
( run in 0.264 second using v1.01-cache-2.11-cpan-4d50c553e7e )