Darren Gibson
Darren Gibson
In the Cats library there are several aliases for various NonEmpty types and methods, for example `EitherNec` and `1.leftNec`. However, there are a lot of inconsistencies with when a `*Nec`...
This simple recursive data structure fails to derive an Encoder: ``` sealed trait Tree; case class Branch(l: Tree, r: Tree) extends Tree; case object Leaf extends Tree; ``` With this...
I have a requirement for my APIs where all messages are in JSON format. Rho has several places where error messages are hard coded. I would prefer if users can...
Presently generating the swagger model for a shapeless `Coproduct` type outputs lots of implementation details about `Coproducts`. Rho should output a composite type with each type included instead. See [discussion...
I'll try and put in an example next week, but it appears the fix for #216 does break using circe's fully automatic derivation. In the mean time, the work around...
Currently it appears the only documentation is on the Wiki and in the code as examples. Can we get some documentation similar to how Http4s is doing their documentation now?...
The swagger for my services are often generated incorrectly because I use custom JSON codecs, or my data types are recursive etc. While I can override this with `SwaggerFormats.withSerializers` I...
I have query string parameter that parses multiple parameters like so: "foo=bar&foo=baz", but swagger's docs see it as "foo=bar%2Cbaz". I believe this is because the CollectionFormat defaults to 'None' in...