Skip to content

Instantly share code, notes, and snippets.

View Hirurg103's full-sized avatar
🏠
Working from home

Дмитрий Hirurg103

🏠
Working from home
View GitHub Profile
class WidgetsController < ApplicationController
class TestDocument < Prawn::Document
def to_pdf
text "Hello World!"
render
end
end
def index
output = TestDocument.new.to_pdf