Jon Pretty
Jon Pretty
Note that the following works fine: ``` scala> import rapture.json._ import rapture.json._ scala> import rapture.json.jsonBackends.spray._ import rapture.json.jsonBackends.spray._ scala> case class CC(s: String, t: String) defined class CC scala> val json...
I've noticed that if I change the test to this, it compiles: ``` scala package com.test import org.scalatest.{FlatSpec, ShouldMatchers} import rapture.json._ import rapture.json.jsonBackends.spray._ class RaptureTest extends FlatSpec with ShouldMatchers {...
Thanks for spending the time on it. I seem to remember I saw something similar a while ago (and was able to fix it in the same way), though I...
Every library is now configured to run a `publish` workflow when its tagged with `pending/`, and will replace that tag with `release/` in the process. The `publish` workflow itself does...
This is somewhat typical for an error message when a derivation fails. I haven't spent a lot of time investigating solutions yet, but one option may be to implement derivation...
If I understand correctly, `First` is a subtype of `DefaultTest`, so we should have that `First & DefaultTest =:= First` by subsumption of types. But if that's not happening automatically,...
This might be the way to go about implementing aggregation of compiler flags.
Everything in Soundness is "safe by default", so you need to explicitly relax the rules to avoid this, but we could find a better way to document this. You have...