Class: Imap::Backup::Setup::FolderChooser

Inherits:
Object
  • Object
show all
Defined in:
lib/imap/backup/setup/folder_chooser.rb

Instance Method Summary collapse

Constructor Details

#initialize(account) ⇒ FolderChooser

Returns a new instance of FolderChooser.



9
10
11
# File 'lib/imap/backup/setup/folder_chooser.rb', line 9

def initialize()
  @account = 
end

Instance Method Details

#runObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/imap/backup/setup/folder_chooser.rb', line 13

def run
  if client.nil?
    highline.ask "Press a key "
    return
  end

  if folder_names.empty?
    Logger.logger.warn "Unable to get folder list"
    highline.ask "Press a key "
    return
  end

  remove_missing

  catch :done do
    loop do
      Kernel.system("clear")
      show_menu
    end
  end
end