Split into new dist
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / lib / Catalyst / Action / Serialize / JSON.pm
diff --git a/lib/Catalyst/Action/Serialize/JSON.pm b/lib/Catalyst/Action/Serialize/JSON.pm
deleted file mode 100644 (file)
index 1079604..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-package Catalyst::Action::Serialize::JSON;
-
-use Moose;
-use namespace::autoclean;
-
-extends 'Catalyst::Action';
-use JSON ();
-
-our $VERSION = '1.07';
-$VERSION = eval $VERSION;
-
-has encoder => (
-   is => 'ro',
-   lazy_build => 1,
-);
-
-sub _build_encoder {
-   my $self = shift;
-   return JSON->new->utf8->convert_blessed;
-}
-
-sub execute {
-    my $self = shift;
-    my ( $controller, $c ) = @_;
-
-    my $stash_key = (
-            $controller->{'serialize'} ?
-                $controller->{'serialize'}->{'stash_key'} :
-                $controller->{'stash_key'}
-        ) || 'rest';
-    my $output = $self->serialize( $c->stash->{$stash_key} );
-    $c->response->output( $output );
-    return 1;
-}
-
-sub serialize {
-    my $self = shift;
-    my $data = shift;
-    $self->encoder->encode( $data );
-}
-
-__PACKAGE__->meta->make_immutable;
-
-1;