Sha256: f6b4673fc3a5e96560d04791bdca5e87c0b418dec84cc6b41c5a8462090226c6
Contents?: true
Size: 521 Bytes
Versions: 14
Compression:
Stored size: 521 Bytes
Contents
module Htmltoword class Configuration attr_accessor :default_templates_path, :custom_templates_path, :default_xslt_path, :custom_xslt_path def initialize @default_templates_path = File.join(File.expand_path('../', __FILE__), 'templates') @custom_templates_path = File.join(File.expand_path('../', __FILE__), 'templates') @default_xslt_path = File.join(File.expand_path('../', __FILE__), 'xslt') @custom_xslt_path = File.join(File.expand_path('../', __FILE__), 'xslt') end end end
Version data entries
14 entries across 14 versions & 3 rubygems