X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FREST.pm;h=883778213a680c0ebfc391eb6e4931f69297e560;hb=7cc6122a2ef9832f8539e74ff428c22ac92af0fc;hp=ffd6992360412294cb2c615ad4c750991ae95740;hpb=259c53c7c52a591187ae5d70e10d2ffc241a48f6;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Controller/REST.pm b/lib/Catalyst/Controller/REST.pm index ffd6992..8837782 100644 --- a/lib/Catalyst/Controller/REST.pm +++ b/lib/Catalyst/Controller/REST.pm @@ -2,7 +2,7 @@ package Catalyst::Controller::REST; use Moose; use namespace::autoclean; -our $VERSION = '0.94'; +our $VERSION = '1.12'; $VERSION = eval $VERSION; =head1 NAME @@ -175,14 +175,6 @@ Uses the L module to generate L output. Uses the L module to generate L output. -=item * C => C - -Uses the L module to generate L output. - -=item * C => C - -Uses the L module to generate L output. - =item * C => C Uses the L module to generate L output. @@ -299,18 +291,9 @@ __PACKAGE__->mk_accessors(qw(serialize)); __PACKAGE__->config( 'stash_key' => 'rest', 'map' => { - 'text/html' => 'YAML::HTML', 'text/xml' => 'XML::Simple', - 'text/x-yaml' => 'YAML', 'application/json' => 'JSON', 'text/x-json' => 'JSON', - 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ], - 'text/x-data-denter' => [ 'Data::Serializer', 'Data::Denter' ], - 'text/x-data-taxi' => [ 'Data::Serializer', 'Data::Taxi' ], - 'application/x-storable' => [ 'Data::Serializer', 'Storable' ], - 'application/x-freezethaw' => [ 'Data::Serializer', 'FreezeThaw' ], - 'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ], - 'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ], }, );