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