David Bourget

Results 2 comments of David Bourget

One more vote for an upgrade to support faraday 2.x.

We've encountered this problem as well. This can be fixed by replacing: ``` @text.gsub!(/#{Regexp.escape(string)}/, sub) ``` By: ``` @text.gsub!(string, sub) ``` There is no need to use a regexp since...