module PdfMatcher

Constants

Config
VERSION

Public Class Methods

config() click to toggle source
# File lib/pdf_matcher.rb, line 17
def self.config
  @config ||= Config.new(nil)
end
match(pdf1, pdf2, output_diff: nil, diff_pdf_opts: nil) click to toggle source
# File lib/pdf_matcher.rb, line 25
def self.match(pdf1, pdf2, output_diff: nil, diff_pdf_opts: nil)
  Matcher.new(pdf1, pdf2, output_diff: output_diff, diff_pdf_opts: diff_pdf_opts).match
end
match?(pdf1, pdf2, output_diff: nil, diff_pdf_opts: nil) click to toggle source
# File lib/pdf_matcher.rb, line 21
def self.match?(pdf1, pdf2, output_diff: nil, diff_pdf_opts: nil)
  match(pdf1, pdf2, output_diff: output_diff, diff_pdf_opts: diff_pdf_opts).matched?
end