Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
vporton committed Jan 27, 2019
1 parent b828071 commit 163caf1
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 19 deletions.
28 changes: 9 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

13 changes: 13 additions & 0 deletions dub.json
Original file line number Diff line number Diff line change
@@ -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"
}
7 changes: 7 additions & 0 deletions source/app.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import std.stdio;
import ae.utils.funopt;

void main()
{
writeln("Edit source/app.d to start your project.");
}

0 comments on commit 163caf1

Please sign in to comment.