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.
Class Method Summary collapse
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.
21 22 23 |
# File 'lib/database_consistency/processors/base_processor.rb', line 21 def initialize(configuration = nil) @configuration = configuration || Configuration.new end |
Instance Attribute Details
#configuration ⇒ Object (readonly)
Returns the value of attribute configuration.
18 19 20 |
# File 'lib/database_consistency/processors/base_processor.rb', line 18 def configuration @configuration end |
Class Method Details
.checkers ⇒ Object
14 15 16 |
# File 'lib/database_consistency/processors/base_processor.rb', line 14 def self.checkers @checkers ||= Set.new end |
Instance Method Details
#enabled_checkers ⇒ Array<Class>
36 37 38 |
# File 'lib/database_consistency/processors/base_processor.rb', line 36 def enabled_checkers self.class.checkers.select { |checker| checker.enabled?(configuration) } end |
#reports(catch_errors: true) ⇒ Array<Hash>
26 27 28 29 30 31 32 33 |
# File 'lib/database_consistency/processors/base_processor.rb', line 26 def reports(catch_errors: true) @reports ||= check rescue StandardError => e raise e unless catch_errors RescueError.call(e) [] end |