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