NAME

App::PipeFilter::Role::Output::Json - serialize output as one JSON object per line

VERSION

version 0.005

SYNOPSIS

package App::PipeFilter::JsonToYaml;

use Moose;

extends 'App::PipeFilter::Generic';

with qw(
  App::PipeFilter::Role::Reader::Sysread
  App::PipeFilter::Role::Input::Json
  App::PipeFilter::Role::Transform::None
  App::PipeFilter::Role::Output::Yaml
);

1;

DESCRIPTION

App::PipeFilter::Role::Output::Json provides an encode_output() method that serializes data into JSON records for output. Each line of output will contain one JSON record.

App::PipeFilter::Generic uses encode_output() to determine the format of the data it will write.

App::PipeFilter::Generic::Json is a generic filter that reads and writes JSON streams. It extends App::PipeFilter::Generic with both App::PipeFilter::Role::Input::Json and App::PipeFilter::Role::Output::Json.

SEE ALSO

You may read this module's implementation in its entirety at

perldoc -m App::PipeFilter::Role::Output::Json

App::PipeFilter has top-level documentation including a table of contents for all the libraries and utilities included in the project.

BUGS

https://rt.cpan.org/Public/Dist/Display.html?Name=App-PipeFilter

REPOSITORY

https://github.com/rcaputo/app-pipefilter

COPYRIGHT AND LICENSE

App::PipeFilter::Role::Output::Json is Copyright 2011 by Rocco Caputo. All rights are reserved. App::PipeFilter::Role::Output::Json is released under the same terms as Perl itself.