class Plotline::Import::Handlers::Base

Public Class Methods

new(runner) click to toggle source
# File lib/plotline/import/handlers/base.rb, line 5
def initialize(runner)
  @runner = runner
end

Public Instance Methods

supported_file?(filename) click to toggle source
# File lib/plotline/import/handlers/base.rb, line 9
def supported_file?(filename)
  raise NotImplementedError
end

Private Instance Methods

log(msg) click to toggle source
# File lib/plotline/import/handlers/base.rb, line 15
def log(msg)
  Plotline.configuration.logger.info(msg)
end