Fix .gitignore for new dist name
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / README
1 NAME
2     Catalyst::Action::Serialize::Data::Serializer - Serialize with
3     Data::Serializer
4
5 SYNOPSIS
6        package MyApp::Controller::Foo;
7
8        use Moose;
9        use namespace::autoclean;
10
11        BEGIN { extends 'Catalyst::Controller' }
12
13        __PACKAGE__->config(
14            'default'   => 'text/x-yaml',
15            'stash_key' => 'rest',
16            'map'       => {
17                'text/x-yaml'        => 'YAML',
18                'application/json'   => 'JSON',
19                'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ],
20            },
21        );
22
23 DESCRIPTION
24     This module implements a serializer for use with "Data::Dumper" and
25     others. It was factored out of Catalyst::Action::REST because it is
26     unlikely to be widely used and tends to break tests, be insecure, and is
27     generally weird. Use at your own risk.
28
29 AUTHOR
30     Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and
31     jrockway
32
33     Marchex, Inc. paid me while I developed this module.
34     (<http://www.marchex.com>)
35
36 CONTRIBUTORS
37     Tomas Doran (t0m) <bobtfish@bobtfish.net>
38
39     John Goulah
40
41     Christopher Laco
42
43     Daisuke Maki <daisuke@endeworks.jp>
44
45     Hans Dieter Pearcey
46
47     Brian Phillips <bphillips@cpan.org>
48
49     Dave Rolsky <autarch@urth.org>
50
51     Luke Saunders
52
53     Arthur Axel "fREW" Schmidt <frioux@gmail.com>
54
55     J. Shirley <jshirley@gmail.com>
56
57     Gavin Henry <ghenry@surevoip.co.uk>
58
59     Gerv http://www.gerv.net/
60
61     Colin Newell <colin@opusvl.com>
62
63     Wallace Reis <wreis@cpan.org>
64
65 COPYRIGHT
66     Copyright (c) 2006-2013 the above named AUTHOR and CONTRIBUTORS
67
68 LICENSE
69     You may distribute this code under the same terms as Perl itself.
70