can convert command-line arguments (a Seq[String]) into an Either[String, Config] representing either a successfully merged configuration (Right(config)) or an error.
Extends the ArgsAsConfigParser to also offer the usual suspects - 'help' and '-show=<path/to/config>'
can convert command-line arguments (a Seq[String]) into an Either[String, Config] representing either a successfully merged configuration (Right(config)) or an error.
The user arguments can be:
The values are resolved left-to right, with any key/value settings taking precidence over any file settings.
would use the configuration value 'bar' for property 'foo' and "1,2,3" for property x.y.z over any properties in myConf.conf or anotherConf.properties.
Then any values in myConf.conf would have its configuration settings take precidence over anotherConf.properties