465a7abf5c2125de09c77981f62f26b56152c807
[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 our $VERSION = '0.81';
7 $VERSION = eval $VERSION;
8
9 extends 'Catalyst::Request::REST';
10 with 'Catalyst::TraitFor::Request::REST::ForBrowsers';
11
12 __PACKAGE__->meta->make_immutable;
13
14 1;
15
16 __END__
17
18 =pod
19
20 =head1 NAME
21
22 Catalyst::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
34 This class has been deprecated in favor of
35 L<Catalyst::TraitFor::Request::REST::ForBrowsers>. Please see that class for
36 details on methods and attributes.
37
38 =head1 AUTHOR
39
40 Dave Rolsky, C<< <autarch@urth.org> >>
41
42 =head1 BUGS
43
44 Please report any bugs or feature requests to
45 C<bug-catalyst-request-rest-forbrowsers@rt.cpan.org>, or through the
46 web interface at L<http://rt.cpan.org>.  I will be notified, and then
47 you'll automatically be notified of progress on your bug as I make
48 changes.
49
50 =head1 COPYRIGHT & LICENSE
51
52 Copyright 2008-2009 Dave Rolsky, All Rights Reserved.
53
54 This program is free software; you can redistribute it and/or modify
55 it under the same terms as Perl itself.
56
57 =cut