Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Created June 29, 2017 17:31
Show Gist options
  • Save a2ikm/b67146ad103c57364f02fcff1ba14a26 to your computer and use it in GitHub Desktop.
Save a2ikm/b67146ad103c57364f02fcff1ba14a26 to your computer and use it in GitHub Desktop.
chunked
class Page
def each
loop do
yield %w(one two thee four five).sample
sleep 1
end
end
end
use Rack::Chunked
app = ->(env) {
[
200,
{ "Content-Type" => "text/plain" },
Page.new,
]
}
run app
# window 1
$ rackup -s puma
# window 2
$ curl -i --raw http://localhost:9292
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment