Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

yaml::any(3pm) [debian 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)

Check Out this Related Man Page

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

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 doet Net <ingy@cpan.org> COPYRIGHT
Copyright (c) 2008. Ingy doet 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> POD ERRORS
Hey! The above document had some coding errors, which are explained below: Around line 191: Non-ASCII character seen before =encoding in 'doet'. Assuming UTF-8 perl v5.16.3 2012-07-13 YAML::Any(3)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Parsing file, yaml file? Extracting specific sections

Here is a data file, which I believe is in YAML. I am trying to retrieve just the 'addon_domains" section, which doesnt seem to be as easy as I had originally thought. Any help on this would be greatly appreciated!! I have been trying to do this in awk and mostly bash scripting instead of perl... (3 Replies)
Discussion started by: Rhije
3 Replies

2. Proxy Server

Problem with Installing Perl Module in Fedora 20

Hi, I have downloaded Audio::Beep. I tried to install it through CPAN but i got YAML error. Then I have tried to install it manually. I tried all the instructions provided in README file. It worked but when i am compiling , it still gives me error: # ls acct21.pl~ imap(2).pl ... (15 Replies)
Discussion started by: zak100
15 Replies

3. Shell Programming and Scripting

YAML file update

removing post since it got fix (1 Reply)
Discussion started by: kishore150
1 Replies

4. Shell Programming and Scripting

[TIP] Processing YAML files with yq

After the success of the jq - tool for parsing and manipulating JSON-Data someone wrote a tool called yq, which aims to be the same for YAML, what jq is for JSON. Seems to work fine. I'll definitely give it a chance in future. Example YAML-File: --- !ruby/object:Puppet::Node::Facts ... (1 Reply)
Discussion started by: stomp
1 Replies