Sha256: eaa03a87b73dbf40c0473860a96cd42446073271ef91b4f46c296bca534dccb9

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

# Examples for stamps and repeaters.

require_relative '../example_helper'

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename, page_size: 'FOLIO') do
  package 'repeatable_content' do |p|
    p.example 'repeater', eval_source: false
    p.example 'stamp'
    p.example 'page_numbering', eval_source: false
    p.example 'alternate_page_numbering', eval_source: false

    p.intro do
      prose <<-TEXT
        Prawn offers two ways to handle repeatable content blocks. Repeater is
        useful for content that gets repeated at well defined intervals while
        Stamp is more appropriate if you need better control of when to repeat
        it.

        There is also one very specific helper for numbering pages.

        The examples show:
      TEXT

      list(
        'How to repeat content on several pages with a single invocation',
        'How to create a new Stamp',
        'How to "stamp" the content block on the page',
        'How to number the document pages with one simple call'
      )
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prawn-2.4.0 manual/repeatable_content/repeatable_content.rb
prawn-2.3.0 manual/repeatable_content/repeatable_content.rb