NAME
Jifty::Script::Console - A console for your Jifty application
DESCRIPTION
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()
.
METHODS
options()
Returns nothing. This script has no options now. Maybe it will have some command lines options in the future.
run()
Creates a new console process.
AUTHOR
Kang-min Liu <gugod@gugod.org
>