case-classy
case-classy copied to clipboard
configuration with less hassle
with following dependencies, ```scala name := "upd-frontend" enablePlugins(ScalaJSPlugin) version := "0.1" scalaVersion := "2.12.6" scalaJSUseMainModuleInitializer := true libraryDependencies += "org.scala-js" %%% "scalajs-dom" % "0.9.5" libraryDependencies += "org.querki" %%% "jquery-facade" %...
Actual version: 0.9.3 Patch: 0.9.4 Minor: - Major: -
If we go back to the example in the readme, I'd like to be able to do: ```scala import classy.generic._ import classy.config._ sealed trait Shape case class Circle(radius: Double) extends...
I have the following hierarchy: ```scala sealed trait SomeType case object Type1 extends SomeType case object Type2 extends SomeType case class MyConfig(t: SomeType) ``` and the following config: ```json t:...
It would be useful to be able to create decoders directly from `A => Try[B]`. The error can be directly turned into the underlying error wrapper. For example, for `monix-kafka`:...
This is twofold: 1. Add a `ValidationFailed` (or similar) `DecodeError` type and corresponding helper methods to add "validation" steps to a decoder. 2. Integrate the Refined library on top of...