Sha256: ff248902ea71a3413909cc53d824c1d27915c76d893bbc342bfc7a6c1a75763f

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

# encoding: utf-8
#
# Creating tables with Prawn is fairly easy. There are two methods that will
# create tables for us <code>table</code> and <code>make_table</code>.
#
# Both are wrappers that create a new <code>Prawn::Table</code> object. The
# difference is that <code>table</code> calls the <code>draw</code> method
# after creating the table and <code>make_table</code> only returns the created
# table, so you have to call the <code>draw</code> method yourself.
#
# The most simple table can be created by providing only an array of arrays
# containing your data where each inner array represents one row.
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::Example.generate(filename) do
  t = make_table([ ["this is the first row"],
                   ["this is the second row"] ])
  t.draw
  move_down 20
  
  table([ ["short", "short", "loooooooooooooooooooong"],
          ["short", "loooooooooooooooooooong", "short"],
          ["loooooooooooooooooooong", "short", "short"] ])
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
prawn-1.0.0 manual/table/creation.rb
prawn-0.15.0 manual/table/creation.rb
prawn-0.14.0 manual/table/creation.rb
prawn-0.13.2 manual/table/creation.rb
prawn-0.13.1 manual/table/creation.rb
prawn-0.13.0 manual/table/creation.rb
prawn-1.0.0.rc2 manual/table/creation.rb
nurettin-prawn-1.0.0.rc1 manual/table/creation.rb