The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Feersum::Runner

SYNOPSIS

    use Feersum::Runner;
    my $runner = Feersum::Runner->new(
        listen => 'localhost:12345',
    );
    $runner->run($feersum_app);

DESCRIPTION

Much like Plack::Runner, but with far fewer options (only a single 'listen' or 'host'/'port' pair is currently supported).

METHODS

$runner->run($feersum_app)

Run Feersum with the specified app code reference. Note that this is not a PSGI app, but a native Feersum app.

AUTHOR

Jeremy Stashewsky, stash@cpan.org

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Jeremy Stashewsky & Socialtext Inc.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.