Subject: | Adding SSCAFFIDI to the list |
They say that misery loves company. Of course, misery doesn't really love
anything, but having like-minded souls with which to commiserate is one
of the few pleasures left when one realizes that everything ultimately
sucks. (Other pleasures include random acts of violence, feeling superior
to everybody, and fucking with people's minds.)
Here's a patch you can apply to add my name, or whatever.
Subject: | 0001-test-for-my-presence-cause-I-don-t-trust-you-bastard.patch |
From 0834aa0c82b2319e4201c262c32a53cdca58303f Mon Sep 17 00:00:00 2001
From: Stephen R. Scaffidi <stephen@scaffidi.net>
Date: Mon, 13 Sep 2010 13:53:07 -0400
Subject: [PATCH 1/2] test for my presence 'cause I don't trust you bastards
---
t/sscaffidi.t | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
create mode 100644 t/sscaffidi.t
diff --git a/t/sscaffidi.t b/t/sscaffidi.t
new file mode 100644
index 0000000..8def044
--- /dev/null
+++ b/t/sscaffidi.t
@@ -0,0 +1,16 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+use Test::More tests => 2;
+
+BEGIN {
+ # untaint whatever's in PERL5LIB and add to @INC.
+ # This is so things work when local::lib is in effect.
+ use Config; use lib $ENV{PERL5LIB} =~ m/(.+?)(?:$Config{path_sep}|$)/g;
+
+ use_ok 'Acme::CPANAuthors';
+}
+
+my $mtfnpy = Acme::CPANAuthors->new('Misanthrope');
+ok $mtfnpy->name('SSCAFFIDI'), 'whatever';
--
1.7.0.4
Subject: | 0002-added-my-sorry-ass-to-the-pile.patch |
From 12aab1c37ee6ac8831f34d0f02d579351fb9261f Mon Sep 17 00:00:00 2001
From: Stephen R. Scaffidi <stephen@scaffidi.net>
Date: Mon, 13 Sep 2010 13:58:28 -0400
Subject: [PATCH 2/2] added my sorry ass to the pile
---
lib/Acme/CPANAuthors/Misanthrope.pm | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib/Acme/CPANAuthors/Misanthrope.pm b/lib/Acme/CPANAuthors/Misanthrope.pm
index e2257af..637feda 100644
--- a/lib/Acme/CPANAuthors/Misanthrope.pm
+++ b/lib/Acme/CPANAuthors/Misanthrope.pm
@@ -12,6 +12,7 @@ use Acme::CPANAuthors::Register (
MSCHWERN => "Michael G Schwern",
MSTROUT => "Matt S Trout",
RJBS => "Ricardo SIGNES",
+ SSCAFFIDI => "Stephen R. Scaffidi",
SUNGO => "sungo",
);
--
1.7.0.4