Sha256: d81a6c2730ca442fb4efa3d02553289ea559ffc67130b299dd0a427e72bfb4ec
Contents?: true
Size: 752 Bytes
Versions: 8
Compression:
Stored size: 752 Bytes
Contents
# encoding: utf-8 # # Leading is the additional space between lines of text. # # The leading can be set using the <code>default_leading</code> method which # applies to the rest of the document or until it is changed, or inline in the # text methods with the <code>:leading</code> option. # # The default leading is <code>0</code>. # require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::Example.generate(filename) do string = "Hey, what did you do with the space between my lines? " * 10 text string, :leading => 0 move_down 20 default_leading 5 text string move_down 20 text string, :leading => 10 end
Version data entries
8 entries across 8 versions & 2 rubygems