mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7c3581cba2
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8010 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
12 lines
402 B
Ruby
12 lines
402 B
Ruby
module Enumerable
|
|
# 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 <tt>:only => :name</tt> option to each user.
|
|
def to_json(options = {}) #:nodoc:
|
|
"[#{map { |value| ActiveSupport::JSON.encode(value, options) } * ', '}]"
|
|
end
|
|
end
|