Class: Regressor::Configuration
- Inherits:
-
Object
- Object
- Regressor::Configuration
- Defined in:
- lib/regressor.rb
Instance Attribute Summary collapse
-
#excluded_models ⇒ Object
Returns the value of attribute excluded_models.
-
#include_enums ⇒ Object
Returns the value of attribute include_enums.
-
#regression_path ⇒ Object
Returns the value of attribute regression_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
14 15 16 17 18 |
# File 'lib/regressor.rb', line 14 def initialize @regression_path = 'spec/models/regression' @excluded_models = [] @include_enums = true end |
Instance Attribute Details
#excluded_models ⇒ Object
Returns the value of attribute excluded_models.
12 13 14 |
# File 'lib/regressor.rb', line 12 def excluded_models @excluded_models end |
#include_enums ⇒ Object
Returns the value of attribute include_enums.
12 13 14 |
# File 'lib/regressor.rb', line 12 def include_enums @include_enums end |
#regression_path ⇒ Object
Returns the value of attribute regression_path.
12 13 14 |
# File 'lib/regressor.rb', line 12 def regression_path @regression_path end |