Class: DatabaseConsistency::Checkers::EnumChecker
- Inherits:
-
BaseChecker
- Object
- BaseChecker
- DatabaseConsistency::Checkers::EnumChecker
- Defined in:
- lib/database_consistency/checkers/enum_checkers/enum_checker.rb
Overview
The base class for enum checkers
Direct Known Subclasses
Instance Attribute Summary collapse
-
#enum ⇒ Object
readonly
Returns the value of attribute enum.
-
#model ⇒ Object
readonly
Returns the value of attribute model.
Instance Method Summary collapse
- #column_or_attribute_name ⇒ Object
-
#initialize(model, enum) ⇒ EnumChecker
constructor
A new instance of EnumChecker.
- #table_or_model_name ⇒ Object
Methods inherited from BaseChecker
checker_name, enabled?, #enabled?, #report, #report_if_enabled?
Constructor Details
#initialize(model, enum) ⇒ EnumChecker
Returns a new instance of EnumChecker.
9 10 11 12 13 |
# File 'lib/database_consistency/checkers/enum_checkers/enum_checker.rb', line 9 def initialize(model, enum) super() @model = model @enum = enum end |
Instance Attribute Details
#enum ⇒ Object (readonly)
Returns the value of attribute enum.
7 8 9 |
# File 'lib/database_consistency/checkers/enum_checkers/enum_checker.rb', line 7 def enum @enum end |
#model ⇒ Object (readonly)
Returns the value of attribute model.
7 8 9 |
# File 'lib/database_consistency/checkers/enum_checkers/enum_checker.rb', line 7 def model @model end |
Instance Method Details
#column_or_attribute_name ⇒ Object
15 16 17 |
# File 'lib/database_consistency/checkers/enum_checkers/enum_checker.rb', line 15 def column_or_attribute_name @column_or_attribute_name ||= enum.to_s end |
#table_or_model_name ⇒ Object
19 20 21 |
# File 'lib/database_consistency/checkers/enum_checkers/enum_checker.rb', line 19 def table_or_model_name @table_or_model_name ||= model.name.to_s end |