From 6f6b4ba91b35f8485c32e9a3ebdafe0c2b0d9f4f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 24 Aug 2009 00:44:37 -0500 Subject: add a testing script --- bin/run | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 bin/run diff --git a/bin/run b/bin/run new file mode 100644 index 0000000..c3320ec --- /dev/null +++ b/bin/run @@ -0,0 +1,21 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use lib 'lib'; +use IM::Engine; + +IM::Engine->new( + interface => { + protocol => 'REPL', + }, + plugins => [ + Commands => { + namespace => 'Bot::Games::Game', + exclude_commands => qr/Bot::Games::Game::Role/, + prefix => '@', + alias => { + sg => 'superghost', + }, + }, + ], +)->run; -- cgit v1.2.3-54-g00ecf