Flowdock
method

respond_to?

Importance_0
respond_to?(message, include_private = false) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

Hide source
# File lib/spec/runner/formatter/no_op_method_missing.rb, line 5
        def respond_to?(message, include_private = false)
          if include_private
            true
          else
            !private_methods.any? {|m| [message.to_s, message.to_sym].include?(m)}
          end
        end
Register or log in to add new notes.