Skip to content

Commit

Permalink
Added Ingy to CREDITS; made contributors.pl work with UTF-8 and ignor…
Browse files Browse the repository at this point in the history
…e fake "Rakudo Perl" name
  • Loading branch information
Util committed Jul 23, 2010
1 parent 5b5c8f5 commit 93ec069
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CREDITS
Expand Up @@ -168,6 +168,13 @@ N: Gregor N. Purdy
E: gregor@focusresearch.com E: gregor@focusresearch.com
S: Sunnyvale, CA S: Sunnyvale, CA


U: ingy
N: Ingy döt Net
E: ingy@ingy.net
W: http://ingy.net/
S: Seattle, WA, USA
D: Make is() work like Perl 5; add .pm6 to extensions searched.

N: James E Keenan (Jim) N: James E Keenan (Jim)
E: jkeenan@cpan.org E: jkeenan@cpan.org
U: jkeenan U: jkeenan
Expand Down
4 changes: 2 additions & 2 deletions docs/announce/2010.07
Expand Up @@ -52,8 +52,8 @@ Patrick R. Michaud, Jonathan Worthington, Moritz Lenz, Solomon Foster,
Carl Masak, Bruce Gray, Martin Berends, chromatic, Will "Coke" Coleda, Carl Masak, Bruce Gray, Martin Berends, chromatic, Will "Coke" Coleda,
Matthew (lue), Timothy Totten, maard, Kodi Arfer, TimToady, Stephen Weeks, Matthew (lue), Timothy Totten, maard, Kodi Arfer, TimToady, Stephen Weeks,
Patrick Abi Salloum, snarkyboojum, Radu Stoica, Vyacheslav Matjukhin, Patrick Abi Salloum, snarkyboojum, Radu Stoica, Vyacheslav Matjukhin,
Andrew Whitworth, cognominal, Tyler Curtis, Alex Kapranoff, Andrew Whitworth, cognominal, Tyler Curtis, Alex Kapranoff, Ingy döt Net,
Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯, mathw, lue, Вячеслав Матюхин, ingy Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯, mathw, lue, Вячеслав Матюхин


If you would like to contribute, see <http://rakudo.org/how-to-help>, ask on If you would like to contribute, see <http://rakudo.org/how-to-help>, ask on
the perl6-compiler@perl.org mailing list, or ask on IRC #perl6 on freenode. the perl6-compiler@perl.org mailing list, or ask on IRC #perl6 on freenode.
Expand Down
4 changes: 2 additions & 2 deletions tools/contributors.pl
Expand Up @@ -16,7 +16,7 @@
while (my $line = <$c>) { while (my $line = <$c>) {
my ($author, $comitter, $msg) = split /\|/, $line, 3; my ($author, $comitter, $msg) = split /\|/, $line, 3;
$contrib{nick_to_name($author)}++; $contrib{nick_to_name($author)}++;
$contrib{nick_to_name($comitter)}++; $contrib{nick_to_name($comitter)}++ if $comitter ne 'Rakudo Perl';
while ($msg =~ /\(([^)]+)\)\+\+/g) { while ($msg =~ /\(([^)]+)\)\+\+/g) {
$contrib{nick_to_name($1)}++; $contrib{nick_to_name($1)}++;
} }
Expand Down Expand Up @@ -51,7 +51,7 @@ sub release_date_of_prev_month {
} }


sub nick_to_name_from_CREDITS { sub nick_to_name_from_CREDITS {
open my $f, '<', 'CREDITS' or die "Can't open file CREDITS for reading: $!"; open my $f, '<:utf8', 'CREDITS' or die "Can't open file CREDITS for reading: $!";
local $/ = ''; local $/ = '';
my %nicks; my %nicks;
while (my $para = <$f>) { while (my $para = <$f>) {
Expand Down

0 comments on commit 93ec069

Please sign in to comment.