RailsCasts Pro episodes are now free!
Learn more or hide this
Resources
gem 'pdfkit'
bundle install rake middleware
config.middleware.use "PDFKit::Middleware", :print_media_type => true
<%= stylesheet_link_tag 'application', :media => "all" %>
<p id="pdf_link"><%= link_to "Download Invoice (PDF)", order_path(@order, :format => "pdf") %></p>
@media print { body { background-color: #FFF; } #container { width: auto; margin: 0; padding: 0; border: none; } #line_items { page-break-before: always; } #pdf_link { display: none; } }