Split into new dist
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / lib / Catalyst / Action / Serialize / YAML.pm
diff --git a/lib/Catalyst/Action/Serialize/YAML.pm b/lib/Catalyst/Action/Serialize/YAML.pm
deleted file mode 100644 (file)
index 92e4bc7..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-package Catalyst::Action::Serialize::YAML;
-
-use Moose;
-use namespace::autoclean;
-
-extends 'Catalyst::Action';
-use YAML::Syck;
-
-our $VERSION = '1.07';
-$VERSION = eval $VERSION;
-
-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;
-    Dump($data);
-}
-
-__PACKAGE__->meta->make_immutable;
-
-1;