--- trunk/lib/Frey.pm 2008/07/11 19:19:42 100 +++ trunk/lib/Frey.pm 2009/01/05 22:10:59 926 @@ -1,22 +1,33 @@ package Frey; use Moose; +our $VERSION = "0.25"; + +use Data::Dump qw//; +sub dump { + my $self = shift; + Data::Dump::dump( @_ ); +} + has 'debug' => ( is => 'rw', - isa => 'Bool', + isa => 'Int', default => 0, ); =head1 NAME -Frey - hi-level web framework in spirit of 4GLs +Frey - hi-level web framework in spirit of 4GLs based on Moose =head1 DESCRIPTION -n. Mythology. + n. Mythology. + + The Norse god who dispenses peace, good weather, prosperity, and bountiful + crops; the brother of Freya. -The Norse god who dispenses peace, good weather, prosperity, and bountiful -crops; the brother of Freya. +Basically you write L classes which become directly callable from +the Firefox using REST API. for gentle intoduction see L. =cut