module Pdftotext
Constants
- VERSION
Public Class Methods
cli()
click to toggle source
# File lib/pdftotext.rb, line 18 def self.cli @cli ||= CLI.new end
pages(path, options={})
click to toggle source
# File lib/pdftotext.rb, line 14 def self.pages(path, options={}) Document.new(path).pages(options) end
text(path, options={})
click to toggle source
# File lib/pdftotext.rb, line 10 def self.text(path, options={}) Document.new(path).text(options) end