to_json icon indicating copy to clipboard operation
to_json copied to clipboard

A performant Ruby JSON Serializer DSL for Oj

Results 4 to_json issues
Sort by recently updated
recently updated
newest added

Most recent commit is from some time ago. I'm currently using to_json and liking it. What are your plans for a stable release on rubygems.org?

Hi, The README talks about this library's ability to stream the JSON generation. Is there a way to take advantage of this in my Rails 4 controllers, and stream the...

Is your class example in the `README` missing some things? ``` ruby # A Post model serializer, using ::ToJson::Serializer inheritance class PostSerializer < ::ToJson::Serializer include PostSerialization # override the serialize...

In the readme the nested example says: ``` def put_post(post) put :title, post.title put :body, post.body put :author, fullname(post.author.first_name, post.author.last_name) put :comments, CommentsSerializer.new(post.comments) #