App-CSVUtils

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
        - Add inplace mode (--inplace, --inplace-backup-ext). Forbid input and
          output as the same unless user specifies inplace mode. Ref: RT#146453.
 
 
1.009   2023-02-10  Released-By: PERLANCAR; Urgency: medium
 
        - Add options: --output-always-quote, --output-quote-empty.
 
        - [doc] Add an example of using --output-always-quote in
          Manual/Cookbook.pod
 
 
1.008   2023-02-03  Released-By: PERLANCAR; Urgency: low
 
        - No functional changes.
 
        - Fix description/example in csv-check-cell.
 
 
1.007   2023-02-03  Released-By: PERLANCAR; Urgency: medium

Changes  view on Meta::CPAN

450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
        - No functional changes.
 
        - Tweak POD formatting.
 
 
0.042   2022-08-01  Released-By: PERLANCAR; Urgency: low
 
        - No functional changes.
 
        - [doc] Add some examples to App::CSVUtils::Manual::Cookbook.
 
 
0.041   2022-08-01  Released-By: PERLANCAR; Urgency: medium
 
        - Add utility: csv-get-cells.
 
        - [cli cli-munge-row] Avoid warning when perl code adds a new
          field.

Changes  view on Meta::CPAN

518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
        - [cli csv-freqtable] [bugfix] Extraneous first row was produced.
 
 
0.035   2022-02-10  Released-By: PERLANCAR; Urgency: medium
 
        - Add utility: csv-freqtable.
 
 
0.034   2021-07-10  Released-By: PERLANCAR; Urgency: medium
 
        - [bugfix][doc] Cookbook package was not renamed.
 
 
0.033   2021-07-10  Released-By: PERLANCAR; Urgency: medium
 
        - Add logging.
 
        - [build] Rebuild with newer Perinci::CmdLine::POD 0.023 to generate
          POD-formatted usage line.

MANIFEST  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.032.
Changes
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README
dist.ini
lib/App/CSVUtils.pm
lib/App/CSVUtils/Manual/Cookbook.pod
lib/App/CSVUtils/Manual/Tips.pod
lib/App/CSVUtils/csv2paras.pm
lib/App/CSVUtils/csv2td.pm
lib/App/CSVUtils/csv2vcf.pm
lib/App/CSVUtils/csv_add_fields.pm
lib/App/CSVUtils/csv_avg.pm
lib/App/CSVUtils/csv_check_cell_values.pm
lib/App/CSVUtils/csv_check_field_names.pm
lib/App/CSVUtils/csv_check_field_values.pm
lib/App/CSVUtils/csv_check_rows.pm

lib/App/CSVUtils/Manual/Cookbook.pod  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## no critic: TestingAndDebugging::RequireUseStrict
 
# AUTHORITY
# DATE
our $DIST = 'App-CSVUtils'; # DIST
# VERSION
 
1;
# ABSTRACT: App::CSVUtils cookbook
 
__END__
 
=pod
 
=encoding UTF-8
 
=head1 NAME
 
App::CSVUtils::Manual::Cookbook - App::CSVUtils cookbook
 
=head1 VERSION
 
This document describes version 1.036 of App::CSVUtils::Manual::Cookbook (from Perl distribution App-CSVUtils), released on 2025-02-04.
 
=head1 DESCRIPTION
 
This document lists the various tasks you can do with the scripts included in
L<App::CSVUtils> distribution.
 
Example F<1.csv> content:
 
 name,age,rank
 andi,25,120

t/author-critic.t  view on Meta::CPAN

8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
}
 
 
use strict;
 
# this test was generated with Dist::Zilla::Plugin::Test::Perl::Critic::Subset 3.001.006
 
use Test::Perl::Critic (-profile => "") x!! -e "";
 
my $filenames = ['lib/App/CSVUtils.pm','lib/App/CSVUtils/Manual/Cookbook.pod','lib/App/CSVUtils/Manual/Tips.pod','lib/App/CSVUtils/csv2paras.pm','lib/App/CSVUtils/csv2td.pm','lib/App/CSVUtils/csv2vcf.pm','lib/App/CSVUtils/csv_add_fields.pm','lib/App/...
unless ($filenames && @$filenames) {
    $filenames = -d "blib" ? ["blib"] : ["lib"];
}
 
all_critic_ok(@$filenames);



( run in 0.455 second using v1.01-cache-2.11-cpan-4e96b696675 )