Samuel Williams
Samuel Williams
At the end of the day, there is nothing that prevents anyone today from putting anything in `REQUEST_PATH`. But servers are doing it and it would be useful to put...
I don't have a strong opinion about it but if `$ script.rb` doesn't work, why should `$ bundle exec script.rb` work? The reason why we don't execute things not on...
Maybe we can survey how other script interpreters work, e.g. `python script.py`, `ruby script.rb`, `bash`, `fish`, `zsh` etc.
The block based approach is probably safer and more flexible. However, in principle we could support both, e.g. ```ruby class Rack::Defaults def initialize(app, **options, &block) @app = app @options =...
`Rack::Config` seems sufficient to me, so part 2 of this issue is actually deciding on initial scope for what is currently a global, that we should configure per request. I'm...
What is the correct behaviour in this situation?
Can you submit a failing test and your proposed fix.
I've seen this happen and it's reproducible. Apparently, one fix is to press Ctrl-C and retry, it will pick up where it's left off at full speed again: The `Ctrl-C`...