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

Version Path
htmltoword-1.1.1 lib/htmltoword/configuration.rb
janie-htmltoword-1.1.2 lib/htmltoword/configuration.rb
htmltoword-1.1.0 lib/htmltoword/configuration.rb
htmltoword-1.0.0 lib/htmltoword/configuration.rb
htmltoword-0.7.0 lib/htmltoword/configuration.rb
mitimes-htmltoword-0.1.0 lib/htmltoword/configuration.rb
htmltoword-0.5.1 lib/htmltoword/configuration.rb
htmltoword-0.5 lib/htmltoword/configuration.rb
htmltoword-0.4.4 lib/htmltoword/configuration.rb
htmltoword-0.4.2 lib/htmltoword/configuration.rb
htmltoword-0.4.1 lib/htmltoword/configuration.rb
htmltoword-0.4.0 lib/htmltoword/configuration.rb
htmltoword-0.2.1 lib/htmltoword/configuration.rb
htmltoword-0.2.0 lib/htmltoword/configuration.rb