
Jifty::Script::Console - A console for your Jifty application

This script aims for developing purpose (or maintaining, if possible). With this script, you can say something like this to diagnose your application:
% bin/jifty console
jifty> my $foo = Jifty->app_class("Model", "StuffCollection")->new;
jifty> $foo->unlimit; YAML::Dump($foo)
All Perl code are ok, since each lines of input are send to eval().

Returns nothing. This script has no options now. Maybe it will have some command lines options in the future.
Creates a new console process.

Kang-min Liu <gugod@gugod.org>