README

Fri, 16 Dec 2011 23:21:28 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Fri, 16 Dec 2011 23:21:28 +0000
changeset 0
3ebc0316f54f
permissions
-rw-r--r--

Initial commit with my changes.
Originally imported from yaml-2.0.tar.gz: http://files.luaforge.net/releases/yaml/yaml/0.2/yaml-0.2.tar.gz

NAME
    yaml - Lua YAML serialization using LibYAML

SYNOPSIS
    require 'yaml'

    serialized = yaml.dump({ 1, 2, 3, 4 })
    content = yaml.load(serialized)

DESCRIPTION
    This module is a Lua binding for Kirill Siminov's excellent LibYAML.
    LibYAML is generally considered to be the best C YAML 1.1 implementation.
    LibYAML 0.1.3 is included as part of this release.

    This module defines the functions dump, load, and configure within the
    global yaml table.

    Portions of this software were inspired by Perl's YAML::LibYAML module by
    Ingy döt Net.

SEE ALSO
    * LibYAML (http://pyyaml.org/wiki/LibYAML)
    * luayaml: libsyck YAML binding (http://luaforge.net/projects/luayaml)
    * YAML::LibYAML (http://search.cpan.org/~nuffin/YAML-LibYAML)

AUTHOR
    Andrew Danforth <acd@weirdness.net>

    If you are using this module successfully I would love to hear from you.

COPYRIGHT
    Copyright (c) 2009, Andrew Danforth

THANKS
    Thanks to the following people for suggestions and patches:

    Peter Mawhorter
    Cyril Romain
    Adrian Sampson

mercurial