Sha256: 6c21d62f2e452119ade0bad6b72ee1c84d474a7e16830cdee13a30cfb4596613

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

# 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 <<-END
        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:
      END

      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

3 entries across 3 versions & 1 rubygems

Version Path
prawn-2.2.2 manual/repeatable_content/repeatable_content.rb
prawn-2.2.1 manual/repeatable_content/repeatable_content.rb
prawn-2.2.0 manual/repeatable_content/repeatable_content.rb