]> Dogcows Code - chaz/git-codeowners/blob - lib/App/Codeowners/Formatter/TSV.pm
b34b69350f0efb8df4c79ebccdfebd4bd4ccef39
[chaz/git-codeowners] / lib / App / Codeowners / Formatter / TSV.pm
1 package App::Codeowners::Formatter::TSV;
2 # ABSTRACT: Format codeowners output as tab-separated values
3
4
5 use warnings;
6 use strict;
7
8 our $VERSION = '0.45'; # VERSION
9
10 use parent 'App::Codeowners::Formatter::CSV';
11
12 sub sep { "\t" }
13
14 1;
15
16 __END__
17
18 =pod
19
20 =encoding UTF-8
21
22 =head1 NAME
23
24 App::Codeowners::Formatter::TSV - Format codeowners output as tab-separated values
25
26 =head1 VERSION
27
28 version 0.45
29
30 =head1 DESCRIPTION
31
32 This is a L<App::Codeowners::Formatter::CSV> that formats output using L<Text::CSV>.
33
34 =head1 BUGS
35
36 Please report any bugs or feature requests on the bugtracker website
37 L<https://github.com/chazmcgarvey/git-codeowners/issues>
38
39 When submitting a bug or request, please include a test-file or a
40 patch to an existing test-file that illustrates the bug or desired
41 feature.
42
43 =head1 AUTHOR
44
45 Charles McGarvey <chazmcgarvey@brokenzipper.com>
46
47 =head1 COPYRIGHT AND LICENSE
48
49 This software is copyright (c) 2019 by Charles McGarvey.
50
51 This is free software; you can redistribute it and/or modify it under
52 the same terms as the Perl 5 programming language system itself.
53
54 =cut
This page took 0.037176 seconds and 3 git commands to generate.