adding style sheets and using Resource::Pack
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates.pm
1 package Moose::Website::Resource::Templates;
2 use Moose;
3
4 our $VERSION   = '0.01';
5 our $AUTHORITY = 'cpan:STEVAN';
6
7 with 'Resource::Pack' => {
8     traits => [
9         'Resource::Pack::Dir'
10     ]
11 };
12
13 __PACKAGE__->meta->make_immutable;
14
15 no Moose; 1;
16
17 __END__
18
19 =pod
20
21 =head1 NAME
22
23 Moose::Website::Resource::Templates - A Moosey solution to this problem
24
25 =head1 SYNOPSIS
26
27   use Moose::Website::Resource::Templates;
28
29 =head1 DESCRIPTION
30
31 =head1 METHODS
32
33 =over 4
34
35 =item B<>
36
37 =back
38
39 =head1 BUGS
40
41 All complex software has bugs lurking in it, and this module is no
42 exception. If you find a bug please either email me, or add the bug
43 to cpan-RT.
44
45 =head1 AUTHOR
46
47 Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
48
49 =head1 COPYRIGHT AND LICENSE
50
51 Copyright 2010 Infinity Interactive, Inc.
52
53 L<http://www.iinteractive.com>
54
55 This library is free software; you can redistribute it and/or modify
56 it under the same terms as Perl itself.
57
58 =cut