Sha256: 8145455a3b72ccef9adcbe84c94722143a202c90452345d6e025ea7b29ce179a
Contents?: true
Size: 702 Bytes
Versions: 56
Compression:
Stored size: 702 Bytes
Contents
require_relative "./report_processor" module CanvasSync module Processors # Processes any report using the normal bulk importer. # # @param report_file_path [String] # @param options [Hash] # @param report_id [Integer] class NormalProcessor < ReportProcessor def self.process(report_file_path, options, report_id) new(report_file_path, options) end def initialize(report_file_path, options) m = mapping[options[:mapping].to_sym] CanvasSync::Importers::BulkImporter.import( report_file_path, m[:columns], options[:klass].constantize, m[:conflict_target], ) end end end end
Version data entries
56 entries across 56 versions & 1 rubygems