Class: SchemaExpectations::Config
- Inherits:
-
Object
- Object
- SchemaExpectations::Config
- Defined in:
- lib/schema_expectations/config.rb
Instance Attribute Summary collapse
-
#error_logger ⇒ Object
Returns the value of attribute error_logger.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
- #reset! ⇒ Object
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
15 16 17 |
# File 'lib/schema_expectations/config.rb', line 15 def initialize reset! end |
Instance Attribute Details
#error_logger ⇒ Object
Returns the value of attribute error_logger.
13 14 15 |
# File 'lib/schema_expectations/config.rb', line 13 def error_logger @error_logger end |
Instance Method Details
#reset! ⇒ Object
19 20 21 |
# File 'lib/schema_expectations/config.rb', line 19 def reset! @error_logger = Logger.new($stderr) end |