Sometimes to_json options feels abusing to me:
user.to_json(:only => [:id, :name], :methods => [:something])
I would prefer an API like this instead:
user.to_json(:id, :name, :something)
What do you think about adding a use case like this to to_json?