Class: HistoryParserInterface
- Inherits:
-
Object
- Object
- HistoryParserInterface
show all
- Defined in:
- lib/parser/history_parser_interface.rb
Overview
Interface for the history parsers.
Instance Method Summary
collapse
Instance Method Details
#commands ⇒ Object
9
10
11
|
# File 'lib/parser/history_parser_interface.rb', line 9
def commands
raise 'Not implemented'
end
|
#history_file ⇒ Object
13
14
15
|
# File 'lib/parser/history_parser_interface.rb', line 13
def history_file
raise 'Not implemented'
end
|
#parse_command ⇒ Object
5
6
7
|
# File 'lib/parser/history_parser_interface.rb', line 5
def parse_command
raise 'Not implemented'
end
|