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