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