module PrawnRails

Constants

VERSION

Public Instance Methods

config() { |config| ... } click to toggle source
# File lib/prawn-rails/config.rb, line 8
def config
  begin
    block_given? ? yield(@config) : @config
  rescue => e
    puts e
    puts e.backtrace
  end
end