in core/src/main/scala/com/gu/marley/AvroSerialisable.scala [35:42]
override def apply() = Schema.create(Schema.Type.STRING)
}
override def writableValue(t: String): Any = t
override def read(x: Any): String = x.asInstanceOf[CharSequence].toString
}
implicit object ShortSerialisable extends AvroSerialisable[Short] {
override val schema = new AvroSchema {