FFI-C-Stat
view release on metacpan or search on metacpan
"Test::Pod::Coverage" : "0",
"Test::Pod::Spelling::CommonMistakes" : "0",
"Test::Spelling" : "0",
"Test::Strict" : "0",
"YAML" : "0"
}
},
"runtime" : {
"requires" : {
"FFI::Platypus" : "1.00",
"Ref::Util" : "0",
"perl" : "5.008004"
}
},
"test" : {
"requires" : {
"File::chdir" : "0",
"Path::Tiny" : "0",
"Test2::V0" : "0.000121",
"Test::Script" : "1.09",
"perl" : "5.008004"
perl: '5.008004'
dynamic_config: 1
generated_by: 'Dist::Zilla version 6.031, 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: FFI-C-Stat
requires:
FFI::Platypus: '1.00'
Ref::Util: '0'
perl: '5.008004'
resources:
IRC: irc://irc.perl.org/#native
Twitter: https://fosstodon.org/@PerlFFI
bugtracker: https://github.com/PerlFFI/FFI-C-Stat/issues
homepage: https://metacpan.org/pod/FFI::C::Stat
repository: git://github.com/PerlFFI/FFI-C-Stat.git
version: '0.03'
x_generated_by_perl: v5.38.0
x_serialization_backend: 'YAML::Tiny version 1.74'
Makefile.PL view on Meta::CPAN
},
"DISTNAME" => "FFI-C-Stat",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008004",
"NAME" => "FFI::C::Stat",
"PM" => {
"lib/FFI/C/Stat.pm" => "\$(INST_LIB)/FFI/C/Stat.pm"
},
"PREREQ_PM" => {
"FFI::Platypus" => "1.00",
"Ref::Util" => 0
},
"TEST_REQUIRES" => {
"File::chdir" => 0,
"Path::Tiny" => 0,
"Test2::V0" => "0.000121",
"Test::Script" => "1.09"
},
"VERSION" => "0.03",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"FFI::Platypus" => "1.00",
"File::chdir" => 0,
"Path::Tiny" => 0,
"Ref::Util" => 0,
"Test2::V0" => "0.000121",
"Test::Script" => "1.09"
);
# BEGIN code inserted by Dist::Zilla::Plugin::FFI::Build
use FFI::Build::MM 0.83;
my $fbmm = FFI::Build::MM->new;
%WriteMakefileArgs = $fbmm->mm_args(%WriteMakefileArgs);
# END code inserted by Dist::Zilla::Plugin::FFI::Build
lib/FFI/C/Stat.pm view on Meta::CPAN
package FFI::C::Stat;
use strict;
use warnings;
use 5.008004;
use Ref::Util qw( is_ref is_globref is_blessed_ref );
use Carp ();
use FFI::Platypus 1.00;
# ABSTRACT: Object-oriented FFI interface to native stat and lstat
our $VERSION = '0.03'; # VERSION
my $ffi = FFI::Platypus->new( api => 1 );
$ffi->bundle; # for accessors / constructor / destructor
t/00_diag.t view on Meta::CPAN
my %modules;
my $post_diag;
$modules{$_} = $_ for qw(
ExtUtils::MakeMaker
FFI::Build::MM
FFI::Platypus
File::chdir
Path::Tiny
Ref::Util
Test2::V0
Test::Script
);
my @modules = sort keys %modules;
sub spacer ()
{
( run in 0.967 second using v1.01-cache-2.11-cpan-4d50c553e7e )