Intertangle-API-Glib
view release on metacpan or search on metacpan
},
"runtime" : {
"recommends" : {
"Inline" : "0.67",
"Inline::C" : "0.62"
},
"requires" : {
"ExtUtils::Depends" : "0",
"Glib" : "0",
"List::MoreUtils" : "0",
"Modern::Perl" : "0",
"perl" : "5.006",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"Module::Load" : "0",
"Test::Most" : "0",
"perl" : "5.006"
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Intertangle-API-Glib
recommends:
Inline: '0.67'
Inline::C: '0.62'
requires:
ExtUtils::Depends: '0'
Glib: '0'
List::MoreUtils: '0'
Modern::Perl: '0'
perl: '5.006'
strict: '0'
warnings: '0'
resources:
homepage: https://github.com/Intertangle/p5-Intertangle-API-Glib
repository: https://github.com/Intertangle/p5-Intertangle-API-Glib.git
version: '0.001'
x_generated_by_perl: v5.26.1
x_serialization_backend: 'YAML::Tiny version 1.73'
x_spdx_expression: 'Artistic-1.0-Perl OR GPL-1.0-or-later'
Makefile.PL view on Meta::CPAN
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Intertangle-API-Glib",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Intertangle::API::Glib",
"PREREQ_PM" => {
"ExtUtils::Depends" => 0,
"Glib" => 0,
"List::MoreUtils" => 0,
"Modern::Perl" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Module::Load" => 0,
"Test::Most" => 0
},
"VERSION" => "0.001",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"ExtUtils::Depends" => 0,
"Glib" => 0,
"List::MoreUtils" => 0,
"Modern::Perl" => 0,
"Module::Load" => 0,
"Test::Most" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
lib/Intertangle/API/Glib.pm view on Meta::CPAN
use Modern::Perl;
package Intertangle::API::Glib;
# ABSTRACT: Helper for using Glib
$Intertangle::API::Glib::VERSION = '0.001';
use strict;
use warnings;
use Glib;
use List::MoreUtils qw(zip);
sub Inline {
perlcritic.rc view on Meta::CPAN
theme = ( core + pbp + security + maintenance ) * bugs
include = CodeLayout::ProhibitSpaceIndentation CodeLayout::ProhibitTrailingWhitespace CodeLayout::RequireConsistentNewlines CodeLayout::TabIndentSpaceAlign
[-Subroutines::ProhibitSubroutinePrototypes]
[TestingAndDebugging::RequireUseStrict]
equivalent_modules = Modern::Perl Moo Moo::Role Renard::Incunabula::Common::Setup
[TestingAndDebugging::RequireUseWarnings]
equivalent_modules = Modern::Perl Moo Moo::Role Renard::Incunabula::Common::Setup
# vim: ft=dosini
#!/usr/bin/env perl
use Test::Most tests => 1;
use Modern::Perl;
use Module::Load;
use Intertangle::API::Glib;
subtest "Testing Glib" => sub {
eval { load 'Inline::C' } or do {
my $error = $@;
plan skip_all => "Inline::C not installed" if $error;
};
( run in 0.917 second using v1.01-cache-2.11-cpan-4d50c553e7e )