提交 fa9b4c4e 编写于 作者: A Andrew White 提交者: GitHub

Merge pull request #28372 from kamipo/delegate_as_json

Simply delegate `as_json` to `records`
......@@ -261,10 +261,6 @@ def encode_with(coder)
coder.represent_seq(nil, records)
end
def as_json(options = nil) #:nodoc:
records.as_json(options)
end
# Returns size of the records.
def size
loaded? ? @records.length : count(:all)
......
......@@ -38,7 +38,7 @@ def inherited(child_class)
delegate :to_xml, :encode_with, :length, :collect, :map, :each, :all?, :include?, :to_ary, :join,
:[], :&, :|, :+, :-, :sample, :reverse, :compact, :in_groups, :in_groups_of,
:to_sentence, :to_formatted_s,
:to_sentence, :to_formatted_s, :as_json,
:shuffle, :split, :index, to: :records
delegate :table_name, :quoted_table_name, :primary_key, :quoted_primary_key,
......
......@@ -33,7 +33,7 @@ module DelegationWhitelistBlacklistTests
:map, :none?, :one?, :partition, :reject, :reverse,
:sample, :second, :sort, :sort_by, :third,
:to_ary, :to_set, :to_xml, :to_yaml, :join,
:in_groups, :in_groups_of, :to_sentence, :to_formatted_s
:in_groups, :in_groups_of, :to_sentence, :to_formatted_s, :as_json
]
ARRAY_DELEGATES.each do |method|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册