Felix Bünemann
Felix Bünemann
It would require extending the router code that generates the Nginx config and adding annotations to switch the behavior.
@kingdonb You cannot handle HTTP/2 when termination TLS on an ELB (or NLB), because it requires ALPN negotiation for HTTP/2 on the ELB and even if that would work, NGINX...
I also have the need for string ids. For now I solved it by forking active_enum and replacing all the checks for `is_a?(Fixnum)`with `is_a?(Fixnum) || is_a?(String)`, see felixbuenemann/active_enum@a2bc720. So I'm...
I think it's worth having for cases where you can't or don't want to spawn multiple processes yourself. With Sidekiq I tend to run each worker process as a standalone...
As long as you don't have any advanced daemon features that require a master process, sticking with upstart/systemd is fine and much better than reinventing the wheel and writing you...
I'm not familiar with go, but would it be easier to do the hex encoding in go? If it's possible to reflect on the result's column type to see if...
Hey @pond, thanks for the effort you put into this PR, but I'm going to reject it for now. I don't object to the idea of having a different format...
Since xlsxstream doesn't allow jumping to specifc cells I'm not sure how much sense multiple header rows would make. Simulating that by inserting rows with nil values isn't something I...
@pond The naming "headers:" is fine, I was talking about the suggestion of fsateler, with add_header_rows that would have allowed multiple header rows. I'm against controlling the row number for...
Thanks, that sounds like a good approach. I'll look through the code as soon as I find some time.