module ActionController::HttpAuthentication::Token

def rewrite_param_values(array_params)

This removes the " characters wrapping the value.
def rewrite_param_values(array_params)
  array_params.each { |param| (param[1] || +"").gsub! %r/^"|"$/, "" }
end