method

to_json

rails latest stable - Class: Enumerable

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.2.1) is shown here.

to_json(options = {})
public

Returns a JSON string representing the enumerable. Any options given will be passed on to its elements. For example:

  users = User.find(:all)
  # => users.to_json(:only => :name)

will pass the :only => :name option to each user.