# File lib/rr/wildcard_matchers/duck_type.rb, line 10
      def wildcard_match?(other)
        self == other ||
        required_methods.all? {|m| other.respond_to?(m) }
      end