# File lib/adhearsion/voip/call.rb, line 249
          def replace_yes_no_answers_with_booleans(variables)
            variables.each do |key,value|
              case value
                when 'yes' : variables[key] = true
                when 'no'  : variables[key] = false
              end
            end
          end