class Ember::Emblem::Config
Attributes
amd_namespace[RW]
ember_template[RW]
output_type[RW]
precompile[RW]
templates_path_separator[RW]
templates_root[RW]
Public Class Methods
new()
click to toggle source
# File lib/ember/emblem/config.rb, line 11 def initialize self.precompile = true self.ember_template = 'HTMLBars' self.output_type = :global self.amd_namespace = nil self.templates_root = 'templates' self.templates_path_separator = '/' end