Class: Jader::Configuration

Inherits:
Object show all
Defined in:
lib/jader/configuration.rb

Overview

Jader configuration class

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Initialize Jader::Configuration class with default values



24
25
26
27
28
29
# File 'lib/jader/configuration.rb', line 24

def initialize
  @mixins_path = nil
  @views_path = nil
  @includes = []
  @prepend_view_path = false
end

Instance Attribute Details

#includesObject

Returns the value of attribute includes.



21
22
23
# File 'lib/jader/configuration.rb', line 21

def includes
  @includes
end

#mixins_pathObject

Returns the value of attribute mixins_path.



21
22
23
# File 'lib/jader/configuration.rb', line 21

def mixins_path
  @mixins_path
end

#prepend_view_pathObject

Returns the value of attribute prepend_view_path.



21
22
23
# File 'lib/jader/configuration.rb', line 21

def prepend_view_path
  @prepend_view_path
end

#views_pathObject

Returns the value of attribute views_path.



21
22
23
# File 'lib/jader/configuration.rb', line 21

def views_path
  @views_path
end