initios/rodolfo

View on GitHub
recipes/example/template.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Rodolfo
  # Example
  class Template < Prawn::Document
    def initialize(data, options = {})
      @data = data
      super(page_size: 'A4', page_layout: :portrait, **options)
    end

    def render
      text @data[:msg]
      super
    end
  end
end