Class: TurboTest::StaticAnalysis::ActiveRecord::Map
- Inherits:
-
Struct
- Object
- Struct
- TurboTest::StaticAnalysis::ActiveRecord::Map
- Defined in:
- lib/turbo_test_static_analysis/active_record_schema/map.rb
Instance Attribute Summary collapse
-
#extensions ⇒ Object
Returns the value of attribute extensions.
-
#tables ⇒ Object
Returns the value of attribute tables.
Instance Method Summary collapse
-
#initialize ⇒ Map
constructor
A new instance of Map.
Constructor Details
#initialize ⇒ Map
Returns a new instance of Map.
7 8 9 10 11 |
# File 'lib/turbo_test_static_analysis/active_record_schema/map.rb', line 7 def initialize(*) super self.extensions ||= [] self.tables ||= [] end |
Instance Attribute Details
#extensions ⇒ Object
Returns the value of attribute extensions
6 7 8 |
# File 'lib/turbo_test_static_analysis/active_record_schema/map.rb', line 6 def extensions @extensions end |
#tables ⇒ Object
Returns the value of attribute tables
6 7 8 |
# File 'lib/turbo_test_static_analysis/active_record_schema/map.rb', line 6 def tables @tables end |