The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Egg::Plugin::YAML - Plugin to treat data of YAML format.

SYNOPSIS

  use Egg qw/ YAML /;
  
  my $data= $e->yaml_load($yaml_text);
  
  print $e->yaml_dump($data);

METHODS

yaml_load([YAML_DATA] or [YAML_FILE_PATH])

The data of the YAML form is made former data and it returns it.

When the character string that doesn't contain changing line is passed, it is treated as passing to the YAML file.

  my $data= $e->yaml_load('/path/to/load_file.yaml');

yaml_dump ([DATA])

DATA is converted into the text of the YAML form and it returns it.

  my $yaml= $e->yaml_dump($data);

SEE ALSO

Egg::Release, Egg::YAML,

AUTHOR

Masatoshi Mizuno <lushe@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2008 by Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.