Skip to content

Instantly share code, notes, and snippets.

@lujanfernaud
Last active October 20, 2018 06:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lujanfernaud/1f891528bf887ef3a724f7b25f2be0b4 to your computer and use it in GitHub Desktop.
Save lujanfernaud/1f891528bf887ef3a724f7b25f2be0b4 to your computer and use it in GitHub Desktop.
Rails: Create File Download

Rails: Create File Download

Download Generated Data

send_data

# Inside controller action.

send_data data, filename

Download Existing File

send_file

# Inside controller action.

send_file "path/to/file"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment