Skip to content

Instantly share code, notes, and snippets.

@leostaples
leostaples / gist:8577680
Last active January 4, 2016 05:49 — forked from ericboehs/gist:7125105
modify env.rb to suppress annoying phantom CoreText warnings
module Capybara::Poltergeist
class Client
private
def redirect_stdout
prev = STDOUT.dup
prev.autoclose = false
$stdout = @write_io
STDOUT.reopen(@write_io)
prev = STDERR.dup