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 docs.json
__dummy.html __dummy.html
docs/ docs/
/poodinis-config /mirage-config
poodinis-config.so mirage-config.so
poodinis-config.dylib mirage-config.dylib
poodinis-config.dll mirage-config.dll
poodinis-config.a mirage-config.a
poodinis-config.lib mirage-config.lib
poodinis-config-test-* mirage-config-test-*
*.exe *.exe
*.o *.o
*.obj *.obj

View file

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

View file

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

View file

@ -7,7 +7,7 @@
* The full terms of the license can be found in the LICENSE file. * 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.exception : enforce;
import std.string : split, startsWith, endsWith, join, lastIndexOf; 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. * 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;