File: credits.pl

package info (click to toggle)
librdf-doap-perl 0.105-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 1,063; sh: 4; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use feature 'say';

use RDF::DOAP;

my $url  = 'http://api.metacpan.org/source/TOBYINK/MooX-ClassAttribute-0.008/META.ttl';
my $doap = 'RDF::DOAP'->from_url($url);
my $proj = $doap->project;

say "==== MAINTAINERS ====";
say $_->to_string for $proj->gather_all_maintainers;

say "==== CONTRIBUTORS ====";
say $_->to_string for $proj->gather_all_contributors;

say "==== THANKS ====";
say $_->to_string for $proj->gather_all_thanks;