Justin Richard's blog
Interesting
Check your instance variable and methods names for conflicts with libraries or frameworks you are using if you get unexpected failures
Example 1: defining @response in your RSpec test setup when expecting to use the response from a HTTP request overwrites the result of the request. (don't expect @request or @url to do you any favors either)
Example 2: Don't define a #process method on a Rails controller
