| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::HaveWebsite; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
294247
|
use strict; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
44
|
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
282
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
7
|
|
|
|
|
|
|
our $DATE = '2023-10-29'; # DATE |
|
8
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-HaveWebsite'; # DIST |
|
9
|
|
|
|
|
|
|
our $VERSION = '0.005'; # VERSION |
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $LIST = { |
|
12
|
|
|
|
|
|
|
summary => 'List of modules that have their own website', |
|
13
|
|
|
|
|
|
|
description => <<'_', |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This list was first constructed based on Gabor Szabo's post: |
|
16
|
|
|
|
|
|
|
on |
|
17
|
|
|
|
|
|
|
2021-02-16. It has then been updated with more entries. |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
_ |
|
20
|
|
|
|
|
|
|
entries => [ |
|
21
|
|
|
|
|
|
|
{module=>'App::Ack', website_url=>'https://beyondgrep.com/'}, |
|
22
|
|
|
|
|
|
|
{module=>'App::cpanminus', website_url=>'http://cpanmin.us/'}, |
|
23
|
|
|
|
|
|
|
{module=>'App::perlbrew', website_url=>'https://perlbrew.pl/'}, |
|
24
|
|
|
|
|
|
|
{module=>'App::TimeTracker', website_url=>'http://timetracker.plix.at/'}, |
|
25
|
|
|
|
|
|
|
{module=>'Catalyst', website_url=>'http://www.catalystframework.org/'}, |
|
26
|
|
|
|
|
|
|
{module=>'Dancer', website_url=>'https://perldancer.org/'}, |
|
27
|
|
|
|
|
|
|
{module=>'Giblog', website_url=>'https://www.giblog.net/', description=>'Currently in Japanese only'}, |
|
28
|
|
|
|
|
|
|
{module=>'Mojolicious', website_url=>'https://mojolicious.org/'}, |
|
29
|
|
|
|
|
|
|
{module=>'MooX::Role::JSON_LD', website_url=>'https://davorg.dev/moox-role-json_ld/'}, |
|
30
|
|
|
|
|
|
|
{module=>'Padre', website_url=>'http://padre.perlide.org/'}, |
|
31
|
|
|
|
|
|
|
{module=>'PDL', website_url=>'https://pdl.perl.org'}, |
|
32
|
|
|
|
|
|
|
{module=>'Perl::Critic', website_url=>'http://perlcritic.com/'}, |
|
33
|
|
|
|
|
|
|
{module=>'Plack', website_url=>'https://plackperl.org/'}, |
|
34
|
|
|
|
|
|
|
{module=>'Rex', website_url=>'https://www.rexify.org/'}, |
|
35
|
|
|
|
|
|
|
{module=>'SPVM', website_url=>'https://yuki-kimoto.github.io/spvmdoc-public/', description=>'Currently machine-translated from Japanese'}, |
|
36
|
|
|
|
|
|
|
{module=>'Template', website_url=>'http://www.template-toolkit.org/'}, |
|
37
|
|
|
|
|
|
|
{module=>'Test::BDD::Cucumber', website_url=>'https://pherkin.pm/'}, |
|
38
|
|
|
|
|
|
|
{module=>'Type::Tiny', website_url=>'https://typetiny.toby.ink/'}, |
|
39
|
|
|
|
|
|
|
{module=>'Wx', website_url=>'http://www.wxperl.it/'}, |
|
40
|
|
|
|
|
|
|
{module=>'Zydeco', website_url=>'https://zydeco.toby.ink/'}, |
|
41
|
|
|
|
|
|
|
], |
|
42
|
|
|
|
|
|
|
}; |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |
|
45
|
|
|
|
|
|
|
# ABSTRACT: List of modules that have their own website |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
__END__ |