/[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

Annotation of /trunk/lib/Frey/Skeleton.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1133 - (hide 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 dpavlin 573 package Frey::Skeleton;
2     use Moose;
3    
4     extends 'Frey';
5 dpavlin 1133 with 'Frey::Web'; #, 'Frey::Storage';
6 dpavlin 573
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 dpavlin 676
17     $self->skeleton;
18 dpavlin 573 }
19    
20 dpavlin 1133 __PACKAGE__->meta->make_immutable;
21     no Moose;
22    
23 dpavlin 573 1;

  ViewVC Help
Powered by ViewVC 1.1.26