次のハッシュオブジェクトを返す宝石があります
{:response=>"There was an error authenticating the sender account.", :status_code=>401}
私のレーキタスクでは、そのプロパティにアクセスしようとしています:
response = my_gem.execute
puts response
puts response.has_key?(:respose)
puts response[:respose]
しかし、なぜそれが印刷されるのか理解できません
{:response=>"There was an error authenticating the sender account.", :status_code=>401}
false
response[:respose] で :response プロパティにアクセスできないのはなぜですか?
PS response[response.keys.first] は機能しますが、非常に奇妙な解決策です