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