Class: Fixturizer::Settings
- Inherits:
-
Object
- Object
- Fixturizer::Settings
- Defined in:
- lib/fixturizer/settings.rb
Instance Attribute Summary collapse
-
#configuration_filename ⇒ Object
Returns the value of attribute configuration_filename.
-
#log_target ⇒ Object
Returns the value of attribute log_target.
-
#verbose ⇒ Object
Returns the value of attribute verbose.
Instance Method Summary collapse
-
#initialize ⇒ Settings
constructor
A new instance of Settings.
Constructor Details
#initialize ⇒ Settings
Returns a new instance of Settings.
7 8 9 10 11 |
# File 'lib/fixturizer/settings.rb', line 7 def initialize @configuration_filename = './config/rules.yml' @log_target = '/tmp/fixturizer.log' @verbose = false end |
Instance Attribute Details
#configuration_filename ⇒ Object
Returns the value of attribute configuration_filename.
5 6 7 |
# File 'lib/fixturizer/settings.rb', line 5 def configuration_filename @configuration_filename end |
#log_target ⇒ Object
Returns the value of attribute log_target.
5 6 7 |
# File 'lib/fixturizer/settings.rb', line 5 def log_target @log_target end |
#verbose ⇒ Object
Returns the value of attribute verbose.
5 6 7 |
# File 'lib/fixturizer/settings.rb', line 5 def verbose @verbose end |