/[Frey]/trunk/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 /trunk/lib/Frey/Skeleton.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1133 - (show annotations)
Tue Jun 30 15:10:55 2009 UTC (14 years, 10 months ago) by dpavlin
File size: 286 byte(s)
make classes immutable and remove moose droppings to make Perl::Critic::Moose happy
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