Bot-WootOff

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Bot::BasicBot" : "0.81",
            "HTTP::Request::Common" : "0",
            "Log::Log4perl" : "1",
            "POE" : "0.99",
            "POE::Component::Client::HTTP" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "url" : "http://github.com/mschilli/bot-wootoff"

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Bot-WootOff
no_index:
  directory:
    - t
    - inc
requires:
  Bot::BasicBot: 0.81
  HTTP::Request::Common: 0
  Log::Log4perl: 1
  POE: 0.99
  POE::Component::Client::HTTP: 0
resources:
  repository: http://github.com/mschilli/bot-wootoff
version: 0.09

MYMETA.json  view on Meta::CPAN

         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "Bot::BasicBot" : "0.81",
            "HTTP::Request::Common" : "0",
            "Log::Log4perl" : "1",
            "POE" : "0.99",
            "POE::Component::Client::HTTP" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "repository" : {
         "url" : "http://github.com/mschilli/bot-wootoff"

MYMETA.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Bot-WootOff
no_index:
  directory:
    - t
    - inc
requires:
  Bot::BasicBot: 0.81
  HTTP::Request::Common: 0
  Log::Log4perl: 1
  POE: 0.99
  POE::Component::Client::HTTP: 0
resources:
  repository: http://github.com/mschilli/bot-wootoff
version: 0.09

Makefile.PL  view on Meta::CPAN

            repository  => 'http://github.com/mschilli/bot-wootoff',
        },
    }
};
WriteMakefile(
    'NAME'         => 'Bot::WootOff',
    'VERSION_FROM' => 'WootOff.pm', # finds $VERSION
    'PREREQ_PM'    => {
        Log::Log4perl                => 1.0,
        Bot::BasicBot                => 0.81,
        HTTP::Request::Common        => 0,
        POE                          => 0.99,
        POE::Component::Client::HTTP => 0,
    },
    'EXE_FILES'     => ['eg/wootbot'],
    $ExtUtils::MakeMaker::VERSION >= 6.50 ? (%$meta_merge) : (),
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'WootOff.pm',
       AUTHOR     => 'Mike Schilli <cpan@perlmeister.com>') : ()),
);

WootOff.pm  view on Meta::CPAN

###########################################
###########################################
package Bot::WootOff;
###########################################
###########################################
use strict;
use warnings;
use HTTP::Request::Common qw(GET);
use POE qw(Component::Client::HTTP);
use Log::Log4perl qw(:easy);

our $VERSION = "0.09";

###########################################
sub new {
###########################################
  my($class, %options) = @_;



( run in 0.403 second using v1.01-cache-2.11-cpan-de7293f3b23 )