Could you copy/paste the exact errors?
The following worked for me in the REPL with v0.9.0:
scala> import rapture.core._
import rapture.core._
scala> import rapture.json._
import rapture.json._
scala> import jsonParsers.scalaJson._
import jsonParsers.scalaJson._
scala> import strategy.throwExceptions
import strategy.throwExceptions
scala> JsonBuffer.parse("{}")
{
}
You could also try writing `new JsonBuffer(Array(Map()))` which constructs an empty `JsonBuffer` "natively", but that's a really ugly solution...
(All this is much nicer in version 1.0.0+ ;) )
Cheers,
Jon