Nikola Šantić
Nikola Šantić
I'm definitely not suggesting automatic marking (if this should exists at all, it should be a separate setting that can be enabled by users). Crossing out numbers with a right...
Ruby can also be solved by added the root certificate to the open_ssl certs folder. First, get OPENSSL_CERT_PATH that ruby by running `irb`: ```ruby require "openssl" puts OpenSSL::X509::DEFAULT_CERT_DIR ``` Depending...
My current workaround for this is capturing the exceptions myself and manually sending them to Airbrake: ```ruby def streaming response.stream.write("Hello\n") raise "TEST" rescue => e notify_airbrake(e) ensure response.stream.close end ```...