summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-26 16:55:32 -0500
committerdoy <doy@tozt.net>2009-04-26 16:55:32 -0500
commit4e0d99b1dd52828f284111825fdc5c5afc53a33f (patch)
tree9b268dbfc65341016b4418080b806be5de846261
parenta4f0dcb59c00c1389db33daea3a4d1895fa0a747 (diff)
downloadbot-games-4e0d99b1dd52828f284111825fdc5c5afc53a33f.tar.gz
bot-games-4e0d99b1dd52828f284111825fdc5c5afc53a33f.zip
modules don't need a #! line
-rw-r--r--lib/Bot/Games.pm1
-rw-r--r--lib/Bot/Games/Game.pm1
-rw-r--r--lib/Bot/Games/Game/24.pm1
-rw-r--r--lib/Bot/Games/Game/Ghost.pm1
-rw-r--r--lib/Bot/Games/Game/Spook.pm1
-rw-r--r--lib/Bot/Games/Game/Superghost.pm1
-rw-r--r--lib/Bot/Games/Game/Xghost.pm1
-rw-r--r--lib/Bot/Games/Meta/Role/Attribute.pm1
-rw-r--r--lib/Bot/Games/Meta/Role/Class.pm1
-rw-r--r--lib/Bot/Games/Meta/Role/Command.pm1
-rw-r--r--lib/Bot/Games/OO.pm1
11 files changed, 0 insertions, 11 deletions
diff --git a/lib/Bot/Games.pm b/lib/Bot/Games.pm
index 599927b..2b2eec6 100644
--- a/lib/Bot/Games.pm
+++ b/lib/Bot/Games.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games;
use Bot::Games::OO;
use Module::Pluggable
diff --git a/lib/Bot/Games/Game.pm b/lib/Bot/Games/Game.pm
index 57e47c3..b9a17b0 100644
--- a/lib/Bot/Games/Game.pm
+++ b/lib/Bot/Games/Game.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game;
use Bot::Games::OO;
use DateTime;
diff --git a/lib/Bot/Games/Game/24.pm b/lib/Bot/Games/Game/24.pm
index 0f61845..8dc2b80 100644
--- a/lib/Bot/Games/Game/24.pm
+++ b/lib/Bot/Games/Game/24.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game::24;
use Bot::Games::OO;
extends 'Bot::Games::Game';
diff --git a/lib/Bot/Games/Game/Ghost.pm b/lib/Bot/Games/Game/Ghost.pm
index 3927dc2..4751506 100644
--- a/lib/Bot/Games/Game/Ghost.pm
+++ b/lib/Bot/Games/Game/Ghost.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game::Ghost;
use Bot::Games::OO;
use Games::Word::Wordlist;
diff --git a/lib/Bot/Games/Game/Spook.pm b/lib/Bot/Games/Game/Spook.pm
index 609bc06..46fd9e9 100644
--- a/lib/Bot/Games/Game/Spook.pm
+++ b/lib/Bot/Games/Game/Spook.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game::Spook;
use Bot::Games::OO;
use Games::Word qw/is_subpermutation/;
diff --git a/lib/Bot/Games/Game/Superghost.pm b/lib/Bot/Games/Game/Superghost.pm
index d25bdf4..dc8cc7e 100644
--- a/lib/Bot/Games/Game/Superghost.pm
+++ b/lib/Bot/Games/Game/Superghost.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game::Superghost;
use Bot::Games::OO;
extends 'Bot::Games::Game::Ghost';
diff --git a/lib/Bot/Games/Game/Xghost.pm b/lib/Bot/Games/Game/Xghost.pm
index fcdc9a3..5777b36 100644
--- a/lib/Bot/Games/Game/Xghost.pm
+++ b/lib/Bot/Games/Game/Xghost.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Game::Xghost;
use Bot::Games::OO;
use Games::Word qw/is_substring/;
diff --git a/lib/Bot/Games/Meta/Role/Attribute.pm b/lib/Bot/Games/Meta/Role/Attribute.pm
index 65d11f5..12c5803 100644
--- a/lib/Bot/Games/Meta/Role/Attribute.pm
+++ b/lib/Bot/Games/Meta/Role/Attribute.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Meta::Role::Attribute;
use Moose::Role;
diff --git a/lib/Bot/Games/Meta/Role/Class.pm b/lib/Bot/Games/Meta/Role/Class.pm
index 638f0b7..b5eb061 100644
--- a/lib/Bot/Games/Meta/Role/Class.pm
+++ b/lib/Bot/Games/Meta/Role/Class.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Meta::Role::Class;
use Moose::Role;
diff --git a/lib/Bot/Games/Meta/Role/Command.pm b/lib/Bot/Games/Meta/Role/Command.pm
index 39dfcf7..75475f9 100644
--- a/lib/Bot/Games/Meta/Role/Command.pm
+++ b/lib/Bot/Games/Meta/Role/Command.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::Meta::Role::Command;
use Moose::Role;
diff --git a/lib/Bot/Games/OO.pm b/lib/Bot/Games/OO.pm
index cf051fd..146a721 100644
--- a/lib/Bot/Games/OO.pm
+++ b/lib/Bot/Games/OO.pm
@@ -1,4 +1,3 @@
-#!/usr/bin/perl
package Bot::Games::OO;
use Moose ();
use MooseX::AttributeHelpers;