Class: MigrationQueries::Gatherer
- Inherits:
-
Object
- Object
- MigrationQueries::Gatherer
- Defined in:
- lib/migration_queries/gatherer.rb
Overview
Gatherer is responsible for collecting SQL queries from migrations.
Instance Attribute Summary collapse
-
#queries_data_objects ⇒ Object
Returns the value of attribute queries_data_objects.
Instance Method Summary collapse
-
#initialize ⇒ Gatherer
constructor
A new instance of Gatherer.
Constructor Details
#initialize ⇒ Gatherer
Returns a new instance of Gatherer.
8 9 10 |
# File 'lib/migration_queries/gatherer.rb', line 8 def initialize self.queries_data_objects = [] end |
Instance Attribute Details
#queries_data_objects ⇒ Object
Returns the value of attribute queries_data_objects.
6 7 8 |
# File 'lib/migration_queries/gatherer.rb', line 6 def queries_data_objects @queries_data_objects end |