Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

moosex::yaml(3pm) [debian man page]

MooseX::YAML(3pm)					User Contributed Perl Documentation					 MooseX::YAML(3pm)

NAME
MooseX::YAML - DWIM loading of Moose objects from YAML SYNOPSIS
# given some class: package My::Module; use Moose; has package => ( is => "ro", init_arg => "name", ); has version => ( is => "rw", init_arg => undef, ); sub BUILD { shift->version(3) } # load an object like so: use MooseX::YAML qw(Load -xs); my $obj = Load(<<'YAML'); --- !My::Module # this syntax requires YAML::XS name: "MooseX::YAML" YAML $obj->package; # "MooseX::YAML" $obj->version; # 3, BUILD was called DESCRIPTION
This module provides DWIM loading of Moose based objects from YAML documents. Any hashes blessed into a Moose class will be replaced with a properly constructed instance (respecting init args, "BUILDALL", and the meta instance type). This is similar to YAML::Active in that certain nodes in the loaded YAML documented are treated specially. EXPORTS
All exports are setup by Sub::Exporter using currying. "-xs", "-syck" or "-pp" can be specified to specify YAML::XS, YAML::Syck or YAML on a per import basis. If no driver is explicitly chosen YAML::XS will be tried first, falling back to YAML. Load LoadFile VERSION CONTROL
This module is maintained using Darcs. You can get the latest version from <http://nothingmuch.woobling.org/code>, and use "darcs send" to commit changes. AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-02-05 MooseX::YAML(3pm)

Check Out this Related Man Page

YAML::Any(3pm)						User Contributed Perl Documentation					    YAML::Any(3pm)

NAME
YAML::Any - Pick a YAML implementation and use it. SYNOPSIS
use YAML::Any; $YAML::Indent = 3; my $yaml = Dump(@objects); DESCRIPTION
There are several YAML implementations that support the Dump/Load API. This module selects the best one available and uses it. ORDER
Currently, YAML::Any will choose the first one of these YAML implementations that is installed on your system: YAML::XS YAML::Syck YAML::Old YAML YAML::Tiny OPTIONS
If you specify an option like: $YAML::Indent = 4; And YAML::Any is using YAML::XS, it will use the proper variable: $YAML::XS::Indent. SUBROUTINES
Like all the YAML modules that YAML::Any uses, the following subroutines are exported by default: Dump Load and the following subroutines are exportable by request: DumpFile LoadFile METHODS
YAML::Any provides the following class methods. YAML::Any->order; This method returns a list of the current possible implementations that YAML::Any will search for. YAML::Any->implementation; This method returns the implementation the YAML::Any will use. This result is obtained by finding the first member of YAML::Any->order that is either already loaded in %INC or that can be loaded using "require". If no implementation is found, an error will be thrown. AUTHOR
Ingy dA~Xt Net <ingy@cpan.org> COPYRIGHT
Copyright (c) 2008. Ingy dA~Xt Net. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-04-18 YAML::Any(3pm)
Man Page