--- trunk/lib/Frey.pm 2008/10/31 16:24:59 209 +++ trunk/lib/Frey.pm 2009/01/09 14:52:58 968 @@ -1,37 +1,33 @@ package Frey; use Moose; -our $VERSION = "0.16"; +our $VERSION = "0.26"; + +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. - -The Norse god who dispenses peace, good weather, prosperity, and bountiful -crops; the brother of Freya. - -Basically you write L classes which become deirectly callable from -the web using REST API - -=head1 INTROSPECTION - -Secondary goal is to have introspection. + n. Mythology. -=head2 Database + The Norse god who dispenses peace, good weather, prosperity, and bountiful + crops; the brother of Freya. -For database objects we support L and when your objects are created -C<< with 'Frey::Collection' >> they will have basic CRUD functionality -implemented by L. +Basically you write L classes which become directly callable from +the Firefox using REST API. for gentle intoduction see L. =cut