Class: Fixturizer::Settings

Inherits:
Object
  • Object
show all
Defined in:
lib/fixturizer/settings.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSettings

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_filenameObject

Returns the value of attribute configuration_filename.



5
6
7
# File 'lib/fixturizer/settings.rb', line 5

def configuration_filename
  @configuration_filename
end

#log_targetObject

Returns the value of attribute log_target.



5
6
7
# File 'lib/fixturizer/settings.rb', line 5

def log_target
  @log_target
end

#verboseObject

Returns the value of attribute verbose.



5
6
7
# File 'lib/fixturizer/settings.rb', line 5

def verbose
  @verbose
end