method

to_json

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.