Class: DatabaseConsistency::Processors::BaseProcessor
- Inherits:
-
Object
- Object
- DatabaseConsistency::Processors::BaseProcessor
- Defined in:
- lib/database_consistency/processors/base_processor.rb
Overview
The base class for processors
Direct Known Subclasses
AssociationsProcessor, ColumnsProcessor, EnumsProcessor, IndexesProcessor, ModelsProcessor, ValidatorsFractionsProcessor, ValidatorsProcessor
Instance Attribute Summary collapse
-
#configuration ⇒ Object
readonly
Returns the value of attribute configuration.
Instance Method Summary collapse
- #enabled_checkers ⇒ Array<Class>
-
#initialize(configuration = nil) ⇒ BaseProcessor
constructor
A new instance of BaseProcessor.
- #reports(catch_errors: true) ⇒ Array<Hash>
Constructor Details
#initialize(configuration = nil) ⇒ BaseProcessor
Returns a new instance of BaseProcessor.
25 26 27 |
# File 'lib/database_consistency/processors/base_processor.rb', line 25 def initialize(configuration = nil) @configuration = configuration || Configuration.new end |
Instance Attribute Details
#configuration ⇒ Object (readonly)
Returns the value of attribute configuration.
22 23 24 |
# File 'lib/database_consistency/processors/base_processor.rb', line 22 def configuration @configuration end |
Instance Method Details
#enabled_checkers ⇒ Array<Class>
40 41 42 |
# File 'lib/database_consistency/processors/base_processor.rb', line 40 def enabled_checkers self.class::CHECKERS.select { |checker| checker.enabled?(configuration) } end |
#reports(catch_errors: true) ⇒ Array<Hash>
30 31 32 33 34 35 36 37 |
# File 'lib/database_consistency/processors/base_processor.rb', line 30 def reports(catch_errors: true) @reports ||= check rescue StandardError => e raise e unless catch_errors RescueError.call(e) [] end |