Sha256: 56c28b048ebf01377c045a06f3ca0988b158129fba5475455549e0ededfe58ba
Contents?: true
Size: 553 Bytes
Versions: 2
Compression:
Stored size: 553 Bytes
Contents
# encoding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) Prawn::Document.generate('simple_grid.pdf') do |p| p.define_grid(:columns => 5, :rows => 8, :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/simple_grid.rb |
davebenvenuti-prawn-0.11.1.pre | examples/grid/simple_grid.rb |