Methods
Class Public methods
accept?(blob)
Source:
# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 6
def accept?(blob)
blob.content_type == "application/pdf" && pdftoppm_exists?
end
pdftoppm_exists?()
Source:
# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 14
def pdftoppm_exists?
return @pdftoppm_exists if defined?(@pdftoppm_exists)
@pdftoppm_exists = system(pdftoppm_path, "-v", out: File::NULL, err: File::NULL)
end
pdftoppm_path()
Source:
# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 10
def pdftoppm_path
ActiveStorage.paths[:pdftoppm] || "pdftoppm"
end