From 163caf15abf53a08858035620b449574cdfb3859 Mon Sep 17 00:00:00 2001 From: Victor Porton Date: Sun, 27 Jan 2019 09:15:27 +0200 Subject: [PATCH] initial version --- .gitignore | 28 +++++++++------------------- README.md | 5 +++++ dub.json | 13 +++++++++++++ source/app.d | 7 +++++++ 4 files changed, 34 insertions(+), 19 deletions(-) create mode 100644 README.md create mode 100644 dub.json create mode 100644 source/app.d diff --git a/.gitignore b/.gitignore index 74b926f..9b4037c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,14 @@ -# Compiled Object files -*.o -*.obj - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Compiled Static libraries -*.a -*.lib - -# Executables -*.exe - -# DUB .dub docs.json __dummy.html docs/ - -# Code coverage +xml-boiler-dlang.so +xml-boiler-dlang.dylib +xml-boiler-dlang.dll +xml-boiler-dlang.a +xml-boiler-dlang.lib +xml-boiler-dlang-test-* +*.exe +*.o +*.obj *.lst diff --git a/README.md b/README.md new file mode 100644 index 0000000..2fa5771 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +I decided to rewrite https://github.com/vporton/xml-boiler +in D programming language. + +Currently this rewrite is not yet finished. + diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..cbcafe4 --- /dev/null +++ b/dub.json @@ -0,0 +1,13 @@ +{ + "name": "xml-boiler-dlang", + "authors": [ + "Victor Porton" + ], + "dependencies": { + "ae": "~>0.0.2331" + }, + "libs": ["z"], + "description": "Automatically transform between XML namespaces: https://vporton.github.io/xml-boiler-docs/", + "copyright": "Copyright © 2019, Victor Porton", + "license": "AGPLv3" +} diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..64a2840 --- /dev/null +++ b/source/app.d @@ -0,0 +1,7 @@ +import std.stdio; +import ae.utils.funopt; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}