Sha256: 603bb1b8293aa1d8042f3ea391594a7e64e5c71c75c359b33c3ece1c9b9e72e6
Contents?: true
Size: 568 Bytes
Versions: 2
Compression:
Stored size: 568 Bytes
Contents
# encoding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) Prawn::Document.generate('column_gutter_grid.pdf') do |p| p.define_grid(:columns => 3, :rows => 10, :column_gutter => 10) p.grid.rows.times do |i| p.grid.columns.times do |j| b = p.grid(i,j) p.bounding_box b.top_left, :width => b.width, :height => b.height do p.text b.name p.stroke do p.rectangle(p.bounds.top_left, b.width, b.height) end end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
prawn-0.11.1 | examples/grid/column_gutter_grid.rb |
davebenvenuti-prawn-0.11.1.pre | examples/grid/column_gutter_grid.rb |