method

respond_to?

respond_to?(method)
public

No documentation available.

# File actionpack/lib/action_dispatch/http/response.rb, line 172
    def respond_to?(method)
      if method.to_s == 'to_path'
        stream.respond_to?(:to_path)
      else
        super
      end
    end