Class: Chake::Readline

Inherits:
Object
  • Object
show all
Defined in:
lib/chake/readline.rb

Direct Known Subclasses

Commands, Recipes

Defined Under Namespace

Classes: Commands, Recipes

Class Method Summary collapse

Class Method Details

.finishObject



27
28
29
30
31
32
33
34
35
# File 'lib/chake/readline.rb', line 27

def finish
  return if !File.writable?(File.dirname(history_file)) || history.empty?

  File.open(history_file, 'w') do |f|
    history.last(500).each do |line|
      f.puts(line)
    end
  end
end

.historyObject



13
14
15
# File 'lib/chake/readline.rb', line 13

def history
  @history ||= []
end

.history_fileObject

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/chake/readline.rb', line 9

def history_file
  raise NotImplementedError
end

.initObject



21
22
23
24
25
# File 'lib/chake/readline.rb', line 21

def init
  return unless File.exist?(history_file)

  @history = File.readlines(history_file).map(&:strip)
end

.promptObject

Raises:

  • (NotImplementedError)


17
18
19
# File 'lib/chake/readline.rb', line 17

def prompt
  raise NotImplementedError
end

.readlineObject



37
38
39
40
41
42
43
44
45
# File 'lib/chake/readline.rb', line 37

def readline
  ::Readline::HISTORY.clear
  history.each do |cmd|
    ::Readline::HISTORY.push(cmd)
  end
  input = ::Readline.readline(prompt)
  history.push(input) if input && input.strip != '' && input != @last
  input
end