Sha256: e17a60a7d0df2b2bffbe7b48e3fe16ee2ce809a046c8b17933349fb7581b723e
Contents?: true
Size: 989 Bytes
Versions: 3
Compression:
Stored size: 989 Bytes
Contents
class PDFKit class Configuration attr_accessor :meta_tag_prefix, :default_options, :root_url attr_writer :wkhtmltopdf def initialize @meta_tag_prefix = 'pdfkit-' @default_options = { :disable_smart_shrinking => false, :page_size => 'Letter', :margin_top => '0.75in', :margin_right => '0.75in', :margin_bottom => '0.75in', :margin_left => '0.75in', :encoding => "UTF-8" } end def wkhtmltopdf @wkhtmltopdf ||= (defined?(Bundler) ? `bundle exec which wkhtmltopdf` : `which wkhtmltopdf`).chomp end end class << self attr_accessor :configuration end # Configure PDFKit someplace sensible, # like config/initializers/pdfkit.rb # # @example # PDFKit.configure do |config| # config.wkhtmltopdf = '/usr/bin/wkhtmltopdf' # end def self.configuration @configuration ||= Configuration.new end def self.configure yield(configuration) end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
pdfkit-middleware-to-file-0.5.4 | lib/pdfkit/configuration.rb |
pdfkit-middleware-to-file-0.5.3 | lib/pdfkit/configuration.rb |
pdfkit-0.5.1 | lib/pdfkit/configuration.rb |