Sha256: 00bc57af7219a0d1cb4dc9f067c62c702d3eb403704e44af32679838e939b38c
Contents?: true
Size: 509 Bytes
Versions: 28
Compression:
Stored size: 509 Bytes
Contents
require_relative "./report_processor" module CanvasSync module Processors # Processes a rubrics report using the bulk importer. # # @param report_file_path [String] # @param options [Hash] class RubricsProcessor < ReportProcessor def self.process(report_file_path, _options, report_id) new(report_file_path, _options) end def initialize(report_file_path, options) do_bulk_import(report_file_path, Rubric, options: options) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems