-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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."); | ||
} |