NAME Catalyst::Action::Serialize::Data::Serializer - Serialize with Data::Serializer SYNOPSIS package MyApp::Controller::Foo; use Moose; use namespace::autoclean; BEGIN { extends 'Catalyst::Controller' } __PACKAGE__->config( 'default' => 'text/x-yaml', 'stash_key' => 'rest', 'map' => { 'text/x-yaml' => 'YAML', 'application/json' => 'JSON', 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ], }, ); DESCRIPTION This module implements a serializer for use with "Data::Dumper" and others. It was factored out of Catalyst::Action::REST because it is unlikely to be widely used and tends to break tests, be insecure, and is generally weird. Use at your own risk. AUTHOR Adam Jacob , with lots of help from mst and jrockway Marchex, Inc. paid me while I developed this module. () CONTRIBUTORS Tomas Doran (t0m) John Goulah Christopher Laco Daisuke Maki Hans Dieter Pearcey Brian Phillips Dave Rolsky Luke Saunders Arthur Axel "fREW" Schmidt J. Shirley Gavin Henry Gerv http://www.gerv.net/ Colin Newell Wallace Reis COPYRIGHT Copyright (c) 2006-2013 the above named AUTHOR and CONTRIBUTORS LICENSE You may distribute this code under the same terms as Perl itself.