Class: Migratrix::Loads::NoOp

Inherits:
Load show all
Defined in:
lib/migratrix/loads/no_op.rb

Overview

A Load 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 Load

#name, #options

Instance Method Summary collapse

Methods inherited from Load

#initialize, #transform

Constructor Details

This class inherits a constructor from Migratrix::Loads::Load

Instance Method Details

#load(transformed_items, options = {}) ⇒ Object



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

def load(transformed_items, options={})
  []
end