Sha256: 18b9d7bc0b822d3c229278805cf714c835ff951fbded67f3d89d9bca07abbbb1
Contents?: true
Size: 812 Bytes
Versions: 6
Compression:
Stored size: 812 Bytes
Contents
# encoding: utf-8 # # To set the document metadata just pass a hash to the <code>:info</code> # option when creating new documents. # The keys in the example below are arbitrary, so you may add whatever keys you want # require File.expand_path(File.join(File.dirname(__FILE__), %w[.. example_helper])) Prawn::Document.generate("metadata.pdf", :info => { :Title => "My title", :Author => "John Doe", :Subject => "My Subject", :Keywords => "test metadata ruby pdf dry", :Creator => "ACME Soft App", :Producer => "Prawn", :CreationDate => Time.now }) do text "This is a test of setting metadata properties via the info option." text "While the keys are arbitrary, the above example sets common attributes." end
Version data entries
6 entries across 6 versions & 2 rubygems