mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-15 04:44:01 +01:00
Rename project to detach it from Poodinis
This commit is contained in:
parent
af6dd95d57
commit
e293baf526
14
.gitignore
vendored
14
.gitignore
vendored
|
@ -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
|
||||||
|
|
5
dub.json
5
dub.json
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
{
|
{
|
||||||
"fileVersion": 1,
|
"fileVersion": 1,
|
||||||
"versions": {
|
"versions": {}
|
||||||
"poodinis": "8.1.2"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
|
@ -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;
|
Loading…
Reference in a new issue