/[Frey]/branches/zimbardo/lib/Frey/Skeleton.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

Contents of /branches/zimbardo/lib/Frey/Skeleton.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1172 - (show annotations)
Sun Jul 5 21:40:16 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 286 byte(s)
branch for localisation

1 package Frey::Skeleton;
2 use Moose;
3
4 extends 'Frey';
5 with 'Frey::Web'; #, 'Frey::Storage';
6
7 has skeleton => (
8 is => 'rw',
9 isa => 'Str',
10 required => 1,
11 default => 'skeleton',
12 );
13
14 sub as_markup {
15 my ($self) = @_;
16
17 $self->skeleton;
18 }
19
20 __PACKAGE__->meta->make_immutable;
21 no Moose;
22
23 1;

  ViewVC Help
Powered by ViewVC 1.1.26