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