Whitespace nazism
[catagits/Catalyst-Engine-STOMP.git] / Makefile.PL
CommitLineData
b919b4cc 1use inc::Module::Install;
2use 5.008006;
48bc6cd6 3
68e73c9f 4license 'perl';
5
b919b4cc 6name 'Catalyst-Engine-Stomp';
7all_from 'lib/Catalyst/Engine/Stomp.pm';
48bc6cd6 8
b919b4cc 9requires 'Catalyst::Engine::Embeddable' => '0.0.1';
0b407261 10requires 'Catalyst::Action::REST' => undef;
092efce5 11requires 'Catalyst::Runtime' => '5.80004';
b919b4cc 12requires 'Moose' => undef;
13requires 'MooseX::Workers' => '0.05';
48bc6cd6 14requires 'Net::Stomp' => '0.34';
b919b4cc 15requires 'YAML::XS' => '0.32';
16requires 'namespace::autoclean' => '0.05';
17
a431050d 18test_requires 'Alien::ActiveMQ' => '0.00003';
6ac87378 19
68e73c9f 20no_index package => 'StompTestApp';
625835bf 21no_index package => 'StompTestApp::Controller::TestController';
68e73c9f 22
b919b4cc 23auto_install;
24WriteAll;
25