mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-14 20:34:00 +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
|
||||
__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
|
||||
|
|
5
dub.json
5
dub.json
|
@ -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"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"poodinis": "8.1.2"
|
||||
}
|
||||
"fileVersion": 1,
|
||||
"versions": {}
|
||||
}
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
Loading…
Reference in a new issue