nkpart / scapps

scala app tools

Clone this repository (size: 2.5 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/nkpart/scapps/
commit 4: 6594d1fe691f
parent 3: b66d1f392328
ListKleisli implicit is gone, import Route._ and Kleislis._. Reduce with .suml on the list of routes defaulttip
nkpart
7 months ago
View at rev
scapps /
filename size last modified message
lib  
project  
src  
.hgignore 115 B 8 months ago First extraction
LICENSE.txt 25.8 KB 8 months ago First extraction
README 363 B 8 months ago a readme!

README

Scapps - tools for scala apps

Building
--------
$ sbt update package

Using
-----

  import scapps.Id._
  import scapps.JSON._

  object foo {
    println("1".jsonString)
  }

See the specs for more examples.

JSON
----

Wraps the awesome databinder-dispatch json library. Allows for type-safe generation:

Map("a", 5, "b", 3).jsonString // {"a" : 5, "b" : 3}