I had the same problem, and found that some of the other suggestions for this question are now defunct. I came up with a 2-step solution that worked for me.
The following unix-y script will tell you all the gems your gems depend on:
gem list | egrep '^.*[ ]' -o | gem dependency
Then I just searched for the culprit in the output.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…