--- trunk/lib/Frey.pm 2008/11/18 14:19:50 415 +++ trunk/lib/Frey.pm 2008/12/02 22:22:04 697 @@ -1,11 +1,14 @@ package Frey; use Moose; -our $VERSION = "0.19"; +our $VERSION = "0.23"; + +use Data::Dump qw//; +sub dump { ref(shift) . ' ' . Data::Dump::dump ( @_ ) } has 'debug' => ( is => 'rw', - isa => 'Bool', + isa => 'Int', default => 0, ); @@ -21,7 +24,7 @@ crops; the brother of Freya. Basically you write L classes which become deirectly callable from -the web using REST API +the Firefox using REST API. =head1 INTROSPECTION @@ -41,11 +44,11 @@ You can also add method invocation and optonal parametars to C constructor like this: - http://localhost:16001/Frey::Pod/markup?class=Frey + http://localhost:16001/Frey::Pod/as_markup?class=Frey this is same using L from perl as - Frey::Pod->new( class => 'Frey' )->markup; + Frey::Pod->new( class => 'Frey' )->as_markup; if you leave out parametars, L will ask for required ones. @@ -55,6 +58,10 @@ C<< with 'Frey::Collection' >> they will have basic CRUD functionality implemented by L. +=head1 SEE ALSO + +L + =cut 1;