Sha256: 8f66ddf1dc39ea023ab5ccb061586e484a74975a92adbb1afdf770c8684a2717

Contents?: true

Size: 646 Bytes

Versions: 3

Compression:

Stored size: 646 Bytes

Contents

# encoding: utf-8
#
# If the table cannot fit on the current page it will flow to the next page just
# like free flowing text. If you would like to have the first row treated as a
# header which will be repeated on subsequent pages set the <code>:header</code>
# option to true.
#
require File.expand_path(File.join(File.dirname(__FILE__),
                                   %w[.. example_helper]))

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  data = [["This row should be repeated on every new page"]]
  data += [["..."]] * 30

  table(data, :header => true)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
prawn-table-continued-1.0.0.rc3 manual/table/flow_and_header.rb
prawn-table-continued-1.0.0.rc2 manual/table/flow_and_header.rb
prawn-table-continued-1.0.0.rc1 manual/table/flow_and_header.rb