Class: Topographer::Importer::Input::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/topographer/importer/input/base.rb

Direct Known Subclasses

Roo

Instance Method Summary collapse

Instance Method Details

#eachObject

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/topographer/importer/input/base.rb', line 10

def each
  raise NotImplementedError
end

#failure_messageObject



18
19
20
# File 'lib/topographer/importer/input/base.rb', line 18

def failure_message
  ''
end

#get_headerObject

Raises:

  • (NotImplementedError)


2
3
4
# File 'lib/topographer/importer/input/base.rb', line 2

def get_header
  raise NotImplementedError
end

#importable?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/topographer/importer/input/base.rb', line 14

def importable?
  true
end

#input_identifierObject

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/topographer/importer/input/base.rb', line 6

def input_identifier
  raise NotImplementedError
end