John Bachir
John Bachir
here is the meat of the monkeypatch, applied with [this method](https://blog.appsignal.com/2021/08/24/responsible-monkeypatching-in-ruby.html) ```ruby # on Net::HTTP def initialize(*) super self.open_timeout = self.read_timeout = self.write_timeout = end ```
okay, thanks so much for all for the info. sorry for no reproduction script. i hacked around with it inside a circleCI ssh session and am sure i did everything...
How are you installing wkhtmltopdf? via apt-get on ubuntu, or another method?
would be great to see a switch to posix-spawn perhaps terrapin could help make the code simpler https://github.com/thoughtbot/terrapin It gives access to stdin and stderr - it returns this object...
@alexch ping
:+1: also the project just deserves a cooler and more positive name anyway :) ideas: - magic_assert - blob_checker - simple_assert - smooth_assert - checkmate - kickassert - expector -...
@alexch ping
Okay, I'll work on a patch. Any ideas for what to explore first? Maybe rails or rspec-rails is somehow including minitest after wrong is included? I've tried hacking rspec-rails and...
If you can explain why this does not make Wrong overwrite minitests' assert, it would help me understand. ``` ruby require "spec_helper" require 'wrong/adapters/rspec' describe User do include Wrong it...
:facepalm: -- simply the number comparison. right under my nose. i just changed it and wrong does now work in my environment. i'll work on a pull request-- but it...