class Importer::Data

Inner class for holding load-time data that gets reset on each load call

Attributes

errors[RW]
rows[RW]
start_row[RW]

Public Class Methods

new() click to toggle source
# File lib/iron/import/importer.rb, line 90
def initialize
  @start_row = nil
  @rows = []
  @errors = []
end