module Importable
Public Instance Methods
Source
# File app/models/concerns/importable.rb, line 16 def records_count raise NotImplementedError, "#{self.class.name} must implement #records_count" end
Source
# File app/models/concerns/importable.rb, line 6 def show_approved_reviewers? raise NotImplementedError, "#{self.class.name} must implement #show_approved_reviewers?" end
Source
# File app/models/concerns/importable.rb, line 11 def show_cancelled_reviewer? raise NotImplementedError, "#{self.class.name} must implement #show_cancelled_reviewer?" end
Source
# File app/models/concerns/importable.rb, line 21 def type_label raise NotImplementedError, "#{self.class.name} must implement #type_label" end