configs
configs copied to clipboard
Scala wrapper for Typesafe config
I have the following line in my code: ``` private val deployments = Deployments(config.get[List[Deployment]]("deployments").valueOrElse(List.empty)) ``` where `Deployment` is a case class with some String fields and `Deployments` is a case...
Hi I have come across an interesting problem when using configs version 0.4.4 and 0.5.0-SNAPSHOT (22ad412d17c104930d63be05bd67474b55745434) with scala 2.11. Example: ```scala object MyEnum extends Enumeration { type MyEnum = Value...
Implicits are not resolved when automatically deriving `Configs` for a `sealed trait`: ```scala case class A1(b: B1) object A1 { implicit val cConfigs: Configs[C1] = { (c, _) => c.get[String]("d").map(C1.make)...