I cannot find anything on neither Documentations nor Google about resumable downloads on Rails (Ruby)
I am using Ruby 2.4 and Rails 5.0.1 on Linux. I want to let my users to download a file over rails. When download starts I want to let them pause and resume it. And, on each requested block I want to execute some functions (events maybe).
I can do that on PHP/Laravel5. I can provide resumable downloads and i can run code on each requested part.
I cannot find anything about this on Rails' website or Google. Is this giant framework not capable of doing it?
Big Note:
I am not talking about directly downloading files. I want to control each part. When from x byte to y byte requested, I want to execute some code before they deliver that part.
Any ideas?