johannegger

Results 2 comments of johannegger

i think it's a problem related to the order of the imports. If you switch them it works fine: ``` scala import rapture.json.jsonBackends.spray._ import rapture.json._ val test = json"""{"platform":"ios", "app_key":"KEY_1"}"""...

i guess you could just convert it to a Map[String,Json] and map it: `myJson.as[Map[String,Json]].map{ case (key,value) => ... }`