The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Data::Collector::Serializer::YAML;
{
  $Data::Collector::Serializer::YAML::VERSION = '0.15';
}
# ABSTRACT: A YAML serializer for Data::Collector

use YAML;
use Moose;
use namespace::autoclean;

sub serialize {
    my ( $self, $data ) = @_;

    return Dump($data);
}

__PACKAGE__->meta->make_immutable;
1;



=pod

=head1 NAME

Data::Collector::Serializer::YAML - A YAML serializer for Data::Collector

=head1 VERSION

version 0.15

=head1 DESCRIPTION

Utilizes L<YAML>.

=head1 SUBROUTINES/METHODS

=head2 serialize

Gets data, serializes it and returns it.

=head1 AUTHOR

Sawyer X <xsawyerx@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Sawyer X.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut


__END__