NAME
Plack::App::GraphEasy - The ASCII Graph Application
SYNOPSIS
.psgi
use Plack::Builder;
use Plack::App::GraphEasy;
builder {
mount '/' => Plack::App::GraphEasy->new->to_app;
};
or CLI one liner
plackup -MPlack::App::GraphEasy -e 'Plack::App::GraphEasy->new->to_app'
Then you can access to 'GET /'.
DESCRIPTION
Plack::App::GraphEasy gives the web interface of Graph::Easy which is ASCII graph generator.
input:
[ A ] -> [ B ] -> [ C ]
output:
+---+ +---+ +---+
| A | --> | B | --> | C |
+---+ +---+ +---+
see more detail: http://bloodgate.com/perl/graph/manual/
METHOD
call
graph app
REPOSITORY
Plack::App::GraphEasy is hosted on github: http://github.com/bayashi/Plack-App-GraphEasy
I appreciate any feedback :D
AUTHOR
Dai Okabayashi <bayashi@cpan.org>
SEE ALSO
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.