Class: Plotline::Import::Handlers::Base
- Inherits:
-
Object
- Object
- Plotline::Import::Handlers::Base
show all
- Defined in:
- lib/plotline/import/handlers/base.rb
Instance Method Summary
collapse
Constructor Details
#initialize(runner) ⇒ Base
5
6
7
|
# File 'lib/plotline/import/handlers/base.rb', line 5
def initialize(runner)
@runner = runner
end
|
Instance Method Details
#supported_file?(filename) ⇒ Boolean
9
10
11
|
# File 'lib/plotline/import/handlers/base.rb', line 9
def supported_file?(filename)
raise NotImplementedError
end
|