Sin Descripción http://j1x-huginn.herokuapp.com
# Monkey patch https://github.com/lostisland/faraday/pull/513# Fixes encoding issue when passing an URL with non UTF-8 charactersmodule Faraday module Utils def unescape(s) string = s.to_s string.force_encoding(Encoding::BINARY) if RUBY_VERSION >= '1.9' CGI.unescape string end endend