Skip to content

Instantly share code, notes, and snippets.

@neilmiddleton
Last active December 18, 2015 22:59
Show Gist options
  • Save neilmiddleton/5858380 to your computer and use it in GitHub Desktop.
Save neilmiddleton/5858380 to your computer and use it in GitHub Desktop.
def stream(url, timeout)
http.stream do |chunk|
buffer << chunk
yield buffer
end
end
stream url, 20 do |buffer|
while line = buffer.slice!(/.+\n/)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment