Method: DoTime#run

Defined in:
lib/do_time.rb

#runObject

Entry point to DoTime



52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/do_time.rb', line 52

def run
  clear_screen
  unless @current_project
    select_project
  end

  no_valid_lists if @valid_lists.empty?

  if !@current_list && (@valid_lists && !@valid_lists.empty?)
    select_list
  end

  make_selections
end