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