Acme-CPANModules-DiffWrappers
view release on metacpan or search on metacpan
- Tweak Abstract (add 'List of ...') to follow convention.
0.003 2020-10-27 Released-By: PERLANCAR; Urgency: medium
- Update to add diff-xls-text.
0.002 2020-08-26 Released-By: PERLANCAR; Urgency: medium
- Update with Acme::CPANModules::CLI::Wrapper::UnixCommand 0.003,
handle array in 'x.command'.
0.001 2018-12-05 Released-By: PERLANCAR
- First release.
{
"abstract" : "List of wrappers for the diff Unix command",
"author" : [
"perlancar <perlancar@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.030, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"Test::Perl::Critic" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
},
"x_spec" : {
"Acme::CPANModules" : "v0.1.7"
}
},
"runtime" : {
"requires" : {
"Acme::CPANModules::CLI::Wrapper::UnixCommand" : "0.006",
"strict" : "0"
}
},
"test" : {
"requires" : {
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Test::More" : "0"
}
---
abstract: 'List of wrappers for the diff Unix command'
author:
- 'perlancar <perlancar@cpan.org>'
build_requires:
File::Spec: '0'
IO::Handle: '0'
IPC::Open3: '0'
Test::More: '0'
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: Acme-CPANModules-DiffWrappers
provides:
Acme::CPANModules::DiffWrappers:
file: lib/Acme/CPANModules/DiffWrappers.pm
version: '0.004'
requires:
Acme::CPANModules::CLI::Wrapper::UnixCommand: '0.006'
strict: '0'
resources:
bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-CPANModules-DiffWrappers
homepage: https://metacpan.org/release/Acme-CPANModules-DiffWrappers
repository: git://github.com/perlancar/perl-Acme-CPANModules-DiffWrappers.git
version: '0.004'
x_Dist_Zilla:
perl:
version: '5.038000'
plugins:
Makefile.PL view on Meta::CPAN
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.030.
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "List of wrappers for the diff Unix command",
"AUTHOR" => "perlancar <perlancar\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Acme-CPANModules-DiffWrappers",
"LICENSE" => "perl",
"NAME" => "Acme::CPANModules::DiffWrappers",
"PREREQ_PM" => {
"Acme::CPANModules::CLI::Wrapper::UnixCommand" => "0.006",
"strict" => 0
},
"TEST_REQUIRES" => {
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => 0
},
"VERSION" => "0.004",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Acme::CPANModules::CLI::Wrapper::UnixCommand" => "0.006",
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => 0,
"strict" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
NAME
Acme::CPANModules::DiffWrappers - List of wrappers for the diff Unix
command
VERSION
This document describes version 0.004 of Acme::CPANModules::DiffWrappers
(from Perl distribution Acme-CPANModules-DiffWrappers), released on
2023-10-29.
ACME::CPANMODULES ENTRIES
App::diffwc
Wraps (or filters output of) diff to add colors and highlight words.
HOMEPAGE
Please visit the project's homepage at
<https://metacpan.org/release/Acme-CPANModules-DiffWrappers>.
SOURCE
Source repository is at
<https://github.com/perlancar/perl-Acme-CPANModules-DiffWrappers>.
SEE ALSO
Acme::CPANModules::CLI::Wrapper::UnixCommand, from which this list is
derived.
Acme::CPANModules - about the Acme::CPANModules namespace
cpanmodules - CLI tool to let you browse/view the lists
AUTHOR
perlancar <perlancar@cpan.org>
CONTRIBUTING
name=Acme-CPANModules-DiffWrappers
[Acme::CPANModules]
[@Author::PERLANCAR]
:version=0.608
[Prereqs]
strict=0
Acme::CPANModules::CLI::Wrapper::UnixCommand=0.006
[Prereqs / DevelopX_spec]
-phase=develop
-relationship=x_spec
Acme::CPANModules=0.1.7
lib/Acme/CPANModules/DiffWrappers.pm view on Meta::CPAN
package Acme::CPANModules::DiffWrappers;
use strict;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-10-29'; # DATE
our $DIST = 'Acme-CPANModules-DiffWrappers'; # DIST
our $VERSION = '0.004'; # VERSION
require Acme::CPANModules::CLI::Wrapper::UnixCommand;
my $srclist = $Acme::CPANModules::CLI::Wrapper::UnixCommand::LIST;
sub _includes {
my ($list, $item) = @_;
ref $list eq 'ARRAY' ? ((grep {$_ eq $item} @$list) ? 1:0) : ($list eq $item);
}
our $LIST = {
summary => "List of wrappers for the diff Unix command",
entries => [
grep { _includes($_->{'x.command'}, 'diff') } @{ $srclist->{entries} }
],
};
1;
# ABSTRACT: List of wrappers for the diff Unix command
__END__
=pod
=encoding UTF-8
=head1 NAME
Acme::CPANModules::DiffWrappers - List of wrappers for the diff Unix command
=head1 VERSION
This document describes version 0.004 of Acme::CPANModules::DiffWrappers (from Perl distribution Acme-CPANModules-DiffWrappers), released on 2023-10-29.
=head1 ACME::CPANMODULES ENTRIES
=over
=item L<App::diffwc>
lib/Acme/CPANModules/DiffWrappers.pm view on Meta::CPAN
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/Acme-CPANModules-DiffWrappers>.
=head1 SOURCE
Source repository is at L<https://github.com/perlancar/perl-Acme-CPANModules-DiffWrappers>.
=head1 SEE ALSO
L<Acme::CPANModules::CLI::Wrapper::UnixCommand>, from which this list is
derived.
L<Acme::CPANModules> - about the Acme::CPANModules namespace
L<cpanmodules> - CLI tool to let you browse/view the lists
=head1 AUTHOR
perlancar <perlancar@cpan.org>
( run in 0.655 second using v1.01-cache-2.11-cpan-df04353d9ac )