Sha256: 4e2fd14e3672cbdedd4bb15a96a0481d9de8f87049ad37ba0a0edf64b327b4ca

Contents?: true

Size: 490 Bytes

Versions: 21

Compression:

Stored size: 490 Bytes

Contents

module RailsConnector
  module Fop
    #
    # Is raised if the PDF generation fails.
    # The error message contains the Java error stack trace of the Apache FOP.
    #
    class GenerationFailed < RuntimeError; end

    CMD = 'fop -xml "%s" -xsl "%s" -pdf "%s" 2>&1' # :nodoc:

    def self.generate_pdf(xml, xsl, pdf) # :nodoc:
      output = `#{CMD % [xml, xsl, pdf]}`
      unless `file -pb "#{pdf}"`.include?('PDF')
        raise GenerationFailed, output
      end
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
infopark_rails_connector-6.8.0.beta.200.621.4c8e1b0 lib/rails_connector/fop.rb