Guest User

Untitled

a guest
May 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. def index
  2. @save_to_paperclip_examples = SaveToPaperclipExample.all
  3.  
  4. # Don't forget to reigster the xls/pdf mime types in config/initializers/mime_types.rb
  5. respond_to do |format|
  6. format.html
  7. format.xls { send_data Doc.create(:name => "example_xls", :document_content => render_to_string, :document_type => "xls") }
  8. format.pdf { send_data Doc.create(:name => "example_pdf", :document_content => render_to_string, :document_type => "pdf") }
  9. end
  10. end
Add Comment
Please, Sign In to add comment