class AbstractImporter::Reporters::DotReporter

Public Instance Methods

batch_inserted(size) click to toggle source
# File lib/abstract_importer/reporters/dot_reporter.rb, line 21
def batch_inserted(size)
  io.print "." * size
  super
end
record_created(record) click to toggle source
# File lib/abstract_importer/reporters/dot_reporter.rb, line 6
def record_created(record)
  io.print "."
  super
end
record_failed(record, hash) click to toggle source
# File lib/abstract_importer/reporters/dot_reporter.rb, line 11
def record_failed(record, hash)
  io.print "×"
  super
end
record_skipped(hash) click to toggle source
# File lib/abstract_importer/reporters/dot_reporter.rb, line 16
def record_skipped(hash)
  io.print "_"
  super
end