Skip to content

Instantly share code, notes, and snippets.

@wethu
Last active February 21, 2017 10:34
Show Gist options
  • Save wethu/77fd383e0f04e6a1df63763adf36e878 to your computer and use it in GitHub Desktop.
Save wethu/77fd383e0f04e6a1df63763adf36e878 to your computer and use it in GitHub Desktop.
class FooController < ApplicationController
def download
file = Tempfile.new("foo")
file.write "foobar"
file.close
begin
send_file(file.open)
ensure
file.close
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment