File: table.rb

package info (click to toggle)
ruby-prawn 2.5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,528 kB
  • sloc: ruby: 17,688; sh: 43; makefile: 20
file content (16 lines) | stat: -rw-r--r-- 354 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'prawn/manual_builder'

Prawn::ManualBuilder::Chapter.new do
  title 'Prawn::Table'

  text do
    prose <<~TEXT
      As of Prawn 1.2.0, Prawn::Table has been extracted into its own
      semi-officially supported gem.

      Please see https://github.com/prawnpdf/prawn-table for more details.
    TEXT
  end
end