--- branches/no-pager/lib/Frey.pm 2008/12/06 14:35:15 737 +++ branches/no-pager/lib/Frey.pm 2008/12/06 15:29:10 738 @@ -1,10 +1,13 @@ package Frey; use Moose; -our $VERSION = "0.23"; +our $VERSION = "0.24"; use Data::Dump qw//; -sub dump { ref(shift) . ' ' . Data::Dump::dump ( @_ ) } +sub dump { + my ($self,$data) = @_; + Data::Dump::dump( $data ); +} has 'debug' => ( is => 'rw', @@ -18,17 +21,18 @@ =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 deirectly callable from -the Firefox using REST API. +the Firefox using REST API. for gentle intoduction see L. -=head1 INTROSPECTION +This is just brief overview of concepts so you might check if they suite you +before you get into details. -Secondary goal is to have introspection. +=head1 Developer parts =head2 Moose classes @@ -50,14 +54,23 @@ Frey::Pod->new( class => 'Frey' )->as_markup; -if you leave out parametars, L will ask for required ones. +Forms to enter required parameters will be generated automatically, +allowing you to explore your data while you are making interface for it. =head2 Database +FIXME broken if not noted in C + 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. +=head1 User parts + +=head2 Pipes + +See L for now. + =head1 SEE ALSO L