/[Frey]/branches/zimbardo/lib/Frey.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /branches/zimbardo/lib/Frey.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 293 by dpavlin, Wed Nov 5 08:21:04 2008 UTC revision 697 by dpavlin, Tue Dec 2 22:22:04 2008 UTC
# Line 1  Line 1 
1  package Frey;  package Frey;
2  use Moose;  use Moose;
3    
4  our $VERSION = "0.17";  our $VERSION = "0.23";
5    
6    use Data::Dump qw//;
7    sub dump { ref(shift) . ' ' . Data::Dump::dump ( @_ ) }
8    
9  has 'debug' => (  has 'debug' => (
10          is => 'rw',          is => 'rw',
11          isa => 'Bool',          isa => 'Int',
12          default => 0,          default => 0,
13  );  );
14    
# Line 21  The Norse god who dispenses peace, good Line 24  The Norse god who dispenses peace, good
24  crops; the brother of Freya.  crops; the brother of Freya.
25    
26  Basically you write L<Moose> classes which become deirectly callable from  Basically you write L<Moose> classes which become deirectly callable from
27  the web using REST API  the Firefox using REST API.
28    
29  =head1 INTROSPECTION  =head1 INTROSPECTION
30    
# Line 41  which will show L<Frey> class introspect Line 44  which will show L<Frey> class introspect
44  You can also add method invocation and optonal parametars to C<new>  You can also add method invocation and optonal parametars to C<new>
45  constructor like this:  constructor like this:
46    
47    http://localhost:16001/Frey::Pod/markup?class=Frey    http://localhost:16001/Frey::Pod/as_markup?class=Frey
48    
49  this is same using L<Frey::Pod> from perl as  this is same using L<Frey::Pod> from perl as
50    
51    Frey::Pod->new( class => 'Frey' )->markup;    Frey::Pod->new( class => 'Frey' )->as_markup;
52    
53  if you leave out parametars, L<Frey::Run> will ask for required ones.  if you leave out parametars, L<Frey::Run> will ask for required ones.
54    
# Line 55  For database objects we support L<Fey> a Line 58  For database objects we support L<Fey> a
58  C<< with 'Frey::Collection' >> they will have basic CRUD functionality  C<< with 'Frey::Collection' >> they will have basic CRUD functionality
59  implemented by L<Frey::ObjectBrowser>.  implemented by L<Frey::ObjectBrowser>.
60    
61    =head1 SEE ALSO
62    
63    L<Frey::Manual>
64    
65  =cut  =cut
66    
67  1;  1;

Legend:
Removed from v.293  
changed lines
  Added in v.697

  ViewVC Help
Powered by ViewVC 1.1.26