Class: HistoryParserInterface

Inherits:
Object
  • Object
show all
Defined in:
lib/parser/history_parser_interface.rb

Overview

Interface for the history parsers.

Direct Known Subclasses

BashHistoryParser, ZshHistoryParser

Instance Method Summary collapse

Instance Method Details

#commandsObject



9
10
11
# File 'lib/parser/history_parser_interface.rb', line 9

def commands
  raise 'Not implemented'
end

#history_fileObject



13
14
15
# File 'lib/parser/history_parser_interface.rb', line 13

def history_file
  raise 'Not implemented'
end

#parse_commandObject



5
6
7
# File 'lib/parser/history_parser_interface.rb', line 5

def parse_command
  raise 'Not implemented'
end