summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-26 02:37:30 -0500
committerdoy <doy@tozt.net>2009-04-26 02:37:30 -0500
commita4f0dcb59c00c1389db33daea3a4d1895fa0a747 (patch)
tree6dfe81b68fa9cc9bb617de04b933d34bf5513a6e
parent2adae6f33332e3a86cdbc435530622c9bea308aa (diff)
downloadbot-games-a4f0dcb59c00c1389db33daea3a4d1895fa0a747.tar.gz
bot-games-a4f0dcb59c00c1389db33daea3a4d1895fa0a747.zip
move mx-attributehelpers into Bot::Games::OO
-rw-r--r--lib/Bot/Games/Game.pm2
-rw-r--r--lib/Bot/Games/OO.pm1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Bot/Games/Game.pm b/lib/Bot/Games/Game.pm
index 39c6462..57e47c3 100644
--- a/lib/Bot/Games/Game.pm
+++ b/lib/Bot/Games/Game.pm
@@ -1,7 +1,6 @@
#!/usr/bin/perl
package Bot::Games::Game;
use Bot::Games::OO;
-use MooseX::AttributeHelpers;
use DateTime;
has help => (
@@ -77,6 +76,5 @@ command cmdlist => sub {
# this happens in Bot::Games, since we want to add the say method from there
#__PACKAGE__->meta->make_immutable;
no Bot::Games::OO;
-no MooseX::AttributeHelpers;
1;
diff --git a/lib/Bot/Games/OO.pm b/lib/Bot/Games/OO.pm
index 16f4a75..cf051fd 100644
--- a/lib/Bot/Games/OO.pm
+++ b/lib/Bot/Games/OO.pm
@@ -1,6 +1,7 @@
#!/usr/bin/perl
package Bot::Games::OO;
use Moose ();
+use MooseX::AttributeHelpers;
use Moose::Exporter;
use Moose::Util::MetaRole;