class DustyRailsRenderer::Configuration

Attributes

dust_compiler_command[RW]
dust_config_path[RW]
dust_js_helper_path[RW]
dust_js_library_path[RW]
dust_template_base_path[RW]
load_dust_helpers[RW]
logging[RW]
node_dust_compiler[RW]
production[RW]

Public Class Methods

new() click to toggle source
# File lib/dusty_rails_renderer.rb, line 110
def initialize
  @dust_config_path = "config/dust_initializer.yml"
  @dust_js_library_path = "app/assets/javascripts/libraries/dust/dust-full.js"
  @dust_template_base_path = "app/assets/javascripts/dust/"
  @production = false
  @node_dust_compiler = false
  @dust_compiler_command = "dustc"
  @logging = false
  @load_dust_helpers = false
  @dust_js_helper_path = "app/assets/javascripts/libraries/dust/dust-helpers.js"
end