Skip to content

Instantly share code, notes, and snippets.

@mandubian
Forked from zxamplez/CODE
Last active December 14, 2015 09:29
Show Gist options
  • Save mandubian/5065523 to your computer and use it in GitHub Desktop.
Save mandubian/5065523 to your computer and use it in GitHub Desktop.
Workaround to create a #Play2.1 #Json #Reads / #Writes in a companion object #scala (in #Play2.2, it's no more needed)
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2013 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
case class Foo(bar: String)
// extends Function1 is just to workaround a limitation in Play2.1
object Foo extends Function1(bar: String, Foo) {
implicit val fmt = Json.format[Foo]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment