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