Skip to content

Instantly share code, notes, and snippets.

View sahin's full-sized avatar
🎯
Focusing

Sahin Boydas sahin

🎯
Focusing
View GitHub Profile
@ericboehs
ericboehs / gist:7125105
Created October 23, 2013 19:30
Poltergeist hack to silence CoreText performance notes from phantomjs
module Capybara::Poltergeist
class Client
private
def redirect_stdout(to)
prev = STDOUT.dup
prev.autoclose = false
$stdout = to
STDOUT.reopen(to)
prev = STDERR.dup