ConfigGenerator
ConfigGenerator copied to clipboard
Configuration file code generator for use in Xcode projects
An implementation to allow inheriting from other plists as mentioned in issue #43
Removed the old CommandLineKit dependency in favour of the Swift Argument Parser package (see https://swift.org/blog/argument-parser/). This change **IS** backwards compatible.
We've come across a situation where we have a config that needs to be identical to another one (and stay identical if changes are made) except for one value Currently...
I just installed configen 1.0.1 through homebrew and ran the command without arguments to see the usage info. The info printed successfully but was followed by an error. ``` $...
as requested by @jtbthethird in issue #1
Very handy tool. One observation though. Currently the `Config` class that is auto generated is initializable. So we can do something like `let configInstance = Config()`. Honestly though I am...
> Finally, you need to create a build target for each of your enviroments. This can be done be selecting File -> New -> Target and selecting 'External Build System'...
I don't like idea of including 5-10 MB binary into my repository. Have you thought about releasing `configen` to Homebrew?
Does configen support optional values? for example can we declare `String?` in the mapping file. The reasoning for this is that some environments don't need all the properties.
Hey, Thanks for this nice tool, and the writeup in your blog is also detailed and wants me to use your configuration :) I was wondering if it would be...