no need for OurPkgVersion with modern dzil
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Request / REST / ForBrowsers.pm
CommitLineData
85aa4e18 1package Catalyst::Request::REST::ForBrowsers;
f5aa7d45 2
85aa4e18 3use Moose;
4
5use namespace::autoclean;
6
85aa4e18 7extends 'Catalyst::Request::REST';
8with 'Catalyst::TraitFor::Request::REST::ForBrowsers';
9
bc06b9a3 10sub _related_role { 'Catalyst::TraitFor::Request::REST::ForBrowsers' }
11
85aa4e18 12__PACKAGE__->meta->make_immutable;
13
141;
15
16__END__
17
18=pod
19
20=head1 NAME
21
22Catalyst::Request::REST::ForBrowsers - A Catalyst::Request::REST subclass for dealing with browsers
23
24=head1 SYNOPSIS
25
26 package MyApp;
27
28 use Catalyst::Request::REST::ForBrowsers;
29
30 MyApp->request_class( 'Catalyst::Request::REST::ForBrowsers' );
31
32=head1 DESCRIPTION
33
34This class has been deprecated in favor of
35L<Catalyst::TraitFor::Request::REST::ForBrowsers>. Please see that class for
36details on methods and attributes.
37
38=head1 AUTHOR
39
40Dave Rolsky, C<< <autarch@urth.org> >>
41
42=head1 BUGS
43
44Please report any bugs or feature requests to
45C<bug-catalyst-request-rest-forbrowsers@rt.cpan.org>, or through the
46web interface at L<http://rt.cpan.org>. I will be notified, and then
47you'll automatically be notified of progress on your bug as I make
48changes.
49
50=head1 COPYRIGHT & LICENSE
51
52Copyright 2008-2009 Dave Rolsky, All Rights Reserved.
53
54This program is free software; you can redistribute it and/or modify
55it under the same terms as Perl itself.
56
57=cut