require 'rubygems' require 'prawn' require 'prawn/layout' require 'prawn/format' Prawn::Document.generate("current-events.pdf", :page_size => [432, 810], :left_margin => 0, :right_margin => 0, :top_margin => 0, :bottom_margin => 0) do text "tada"#, :at => [0, 0], :rotate => 90 bounding_box [0, 0], :width => 100, :height => 810 do fill_color "cecece" fill_rectangle [0,0], 100, 810 end end