Rename project to detach it from Poodinis

This commit is contained in:
Mike Bierlee 2022-09-24 16:58:49 +03:00
parent af6dd95d57
commit e293baf526
5 changed files with 14 additions and 17 deletions

14
.gitignore vendored
View file

@ -2,13 +2,13 @@
docs.json
__dummy.html
docs/
/poodinis-config
poodinis-config.so
poodinis-config.dylib
poodinis-config.dll
poodinis-config.a
poodinis-config.lib
poodinis-config-test-*
/mirage-config
mirage-config.so
mirage-config.dylib
mirage-config.dll
mirage-config.a
mirage-config.lib
mirage-config-test-*
*.exe
*.o
*.obj

View file

@ -1,9 +1,8 @@
{
"name": "poodinis-config",
"description": "Config loading and injection using Poodinis",
"name": "mirage-config",
"description": "Application Configuration Utilities",
"copyright": "Copyright © 2022, Mike Bierlee",
"authors": ["Mike Bierlee"],
"license": "MIT",
"dependencies": { "poodinis": "~>8.1.2" },
"targetType": "library"
}

View file

@ -1,6 +1,4 @@
{
"fileVersion": 1,
"versions": {
"poodinis": "8.1.2"
}
"fileVersion": 1,
"versions": {}
}

View file

@ -7,7 +7,7 @@
* The full terms of the license can be found in the LICENSE file.
*/
module poodinis.config.dictionary;
module mirage.config;
import std.exception : enforce;
import std.string : split, startsWith, endsWith, join, lastIndexOf;

View file

@ -7,6 +7,6 @@
* The full terms of the license can be found in the LICENSE file.
*/
module poodinis.config;
module mirage;
public import poodinis.config.dictionary;
public import mirage.config;