Merge pull request #5 from carlor/make-dub

Make D-YAML a dub package.
This commit is contained in:
Ferdinand Majerech 2013-02-24 11:52:29 -08:00
commit 0c0bfa5d29
3 changed files with 28 additions and 0 deletions

18
dyaml/all.d Normal file
View file

@ -0,0 +1,18 @@
// Copyright Ferdinand Majerech 2011.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module dyaml.all;
public import dyaml.constructor;
public import dyaml.dumper;
public import dyaml.encoding;
public import dyaml.exception;
public import dyaml.linebreak;
public import dyaml.loader;
public import dyaml.representer;
public import dyaml.resolver;
public import dyaml.style;
public import dyaml.node;

9
package.json Normal file
View file

@ -0,0 +1,9 @@
{
"name": "dyaml",
"description": "YAML parser and emitter",
"homepage": "http://dyaml.alwaysdata.net/",
"copyright": "Copyright © 2011, Ferdinand Majerech",
"authors": ["Ferdinand Majerech"],
"license": "Boost 1.0",
"dependencies": {}
}

1
source/dyaml Symbolic link
View file

@ -0,0 +1 @@
../dyaml/