comparison: bin/setup-cpan-faves
bin/setup-cpan-faves
- changeset 694
- 7c7e47abe4e1
- parent 692
- 4573c0ed4d0d
- child 695
- 1dc38f7164ce
equal
deleted
inserted
replaced
1 #!/bin/sh |
1 #!/usr/bin/env perl |
2 set -eu |
2 use warnings; |
|
3 use strict; |
3 |
4 |
4 exec cpanm -q <<END |
5 exec cpanm => -nq => qw( |
|
6 Carton |
5 |
7 |
6 Carton |
8 App::prowess |
7 |
9 |
8 App::prowess |
10 Perl::Tidy |
9 Pod::Cpandoc |
11 App::Cpandoc |
10 |
12 |
11 Perl::Tidy |
13 experimentals |
|
14 Import::Into |
12 |
15 |
13 Import::Into |
16 Reply |
14 experimentals |
17 IO::Pager |
|
18 Data::Printer |
|
19 Data::Printer::Filter::JSON |
|
20 Data::Printer::Filter::URI |
|
21 Carp::Always |
|
22 Proc::InvokeEditor |
|
23 B::Keywords |
|
24 Term::ReadLine::Gnu |
|
25 Class::Refresh |
|
26 Pry |
15 |
27 |
16 Reply |
28 Devel::Confess |
17 IO::Pager |
|
18 Data::Printer |
|
19 Data::Printer::Filter::JSON |
|
20 Data::Printer::Filter::URI |
|
21 Carp::Always |
|
22 Proc::InvokeEditor |
|
23 B::Keywords |
|
24 Term::ReadLine::Gnu |
|
25 Class::Refresh |
|
26 Pry |
|
27 |
29 |
28 Devel::Confess |
30 Path::Tiny |
29 |
31 Getopt::Long::Descriptive |
30 Path::Tiny |
32 ); |
31 END |
|