This repository was archived by the owner on Mar 11, 2020. It is now read-only.

Description
We've done something like this to support decoding dates form our config files
implicit val configuredLocalDate: Configured[LocalDate] = new Configured[LocalDate] {
def apply(a: CfgValue) = Some(LocalDate.parse(a.pretty.replace("\"", ""), ofPattern("dd MMM yyyy")))
}
Is that something that could/should go into the CfgValue trait? We'd do a pull request but aren't sure how you'd prefer it to slot in.