Flowdock
method

respond_to?

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: ActionDispatch::Response
respond_to?(method) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.