I'm trying to test for equality against a heroku ENV var, to no avail.
Example:
if a['answer']['question_id'] == ENV['HEROKU_VAR']
# this expression was supposed to be true!
end
I've sent each side of the expression to the debugger and they print the same value.
My only presumption is that the ENV var is an object that can't have operations performed on it.
Anyone know what I could be doing wrong?
inspect, that might reveal something. – Sergio Tulentsev Aug 7 '12 at 20:33