aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-02-14 15:00:52 -0800
committerJakob Odersky <jakob@odersky.com>2018-02-14 15:00:52 -0800
commit7ab0889d7ab4480d0d90346432006ffd345b4916 (patch)
treefccce4902dfc4241a651dfac32e4ef77288de3c9 /README.md
parent5a37bfee89a2b5ae17c7980327a92c381c006cf7 (diff)
downloadspray-json-derivation-7ab0889d7ab4480d0d90346432006ffd345b4916.tar.gz
spray-json-derivation-7ab0889d7ab4480d0d90346432006ffd345b4916.tar.bz2
spray-json-derivation-7ab0889d7ab4480d0d90346432006ffd345b4916.zip
Remove need for special case for enums
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9cc0cce..de5e4fd 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,17 @@
# Spray JSON Format Derivation
-This library provides automatic spray JsonFormats for any `case class` and children of `sealed trait`s.
-
-It uses the [Magnolia](http://magnolia.work/) ([source code](https://github.com/propensive/magnolia)) type-derivation library to implicitly generate JSON formats for any product type. Magnolia integrates with spray so seamlessly that it is almost not worth the effort to publish this project as a full fledged repository; a single gist with the contents of [DerivedFormats.scala](src/main/scala/DerivedFormats.scala) would demonstrate almost all functionality.
+This library provides automatic spray JsonFormats for any `case class`
+and children of `sealed trait`s.
+
+It uses the [Magnolia](http://magnolia.work/) ([source
+code](https://github.com/propensive/magnolia)) type-derivation library
+to implicitly generate JSON formats for any product type. Magnolia
+integrates with spray so seamlessly that it is almost not worth the
+effort to publish this project as a full fledged repository; a single
+gist with the contents of
+[DerivedFormats.scala](src/main/scala/DerivedFormats.scala) would
+demonstrate almost all functionality.
## Getting Started