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