mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
25 lines
816 B
Ruby
25 lines
816 B
Ruby
# frozen_string_literal: true
|
|
|
|
WickedPdf.config ||= {}
|
|
|
|
ENV['PATH'].split(':').each do |path|
|
|
exe_path = File.join(path, 'wkhtmltopdf')
|
|
WickedPdf.config[:exe_path] = File.join(path, 'wkhtmltopdf') if File.file?(exe_path)
|
|
end
|
|
|
|
# WickedPdfHelper patch that fixes issue with including application.css
|
|
# in environments like Heroku where assets.compile option is disabled and
|
|
# it is not acceptable to enable it.
|
|
if Rails.env.production? && Rails.configuration.assets.compile == false
|
|
WickedPdf::WickedPdfHelper::Assets.module_eval do
|
|
def read_asset(source)
|
|
manifest = Rails.application.assets_manifest
|
|
path = File.join(manifest.dir, manifest.assets[source])
|
|
File.read(path)
|
|
end
|
|
|
|
def asset_exists?(source)
|
|
Rails.application.assets_manifest.assets.key?(source)
|
|
end
|
|
end
|
|
end
|