method
respond_to?
respond_to?(msg_id, priv=false)
public
Hide source
# File lib/drb/drb.rb, line 1067 def respond_to?(msg_id, priv=false) case msg_id when :_dump true when :marshal_dump false else method_missing(:respond_to?, msg_id, priv) end end