Class: Migratrix::Extractions::NoOp

Inherits:
Extraction show all
Defined in:
lib/migratrix/extractions/no_op.rb

Overview

An Extraction object that does nothing. Useful for plugging into a Migration when you need to debug other parts of the migration

Instance Attribute Summary

Attributes inherited from Extraction

#name, #options, #source

Instance Method Summary collapse

Methods inherited from Extraction

#execute_extract, #handle_limit, #handle_offset, #handle_order, #handle_where, #initialize, #obtain_source, #process_source

Constructor Details

This class inherits a constructor from Migratrix::Extractions::Extraction

Instance Method Details

#extract(options = {}) ⇒ Object



6
7
8
# File 'lib/migratrix/extractions/no_op.rb', line 6

def extract(options={})
  []
end