class SlackScratcher::Loader::Base

Abstract loader class for importing slack log data @since 0.1

Public Class Methods

new() click to toggle source

@ abstract

# File lib/slack_scratcher/loader/base.rb, line 9
def initialize
  fail NotImplementedError
end

Public Instance Methods

each() click to toggle source

@ abstract

# File lib/slack_scratcher/loader/base.rb, line 14
def each
  fail NotImplementedError
end