Class: Todos::Commands::GeneralCommands::ListUndoneTasks

Inherits:
BasicTaskList
  • Object
show all
Defined in:
lib/todos_cli.rb

Constant Summary collapse

KEY =
'l'
DESCRIPTION =
'List undone tasks'

Class Method Summary collapse

Methods inherited from BasicTaskList

task_list_body

Methods included from BasicList

#print_list

Class Method Details

.executeObject



94
95
96
97
# File 'lib/todos_cli.rb', line 94

def self.execute
  puts 'Tasks to do'
  super(:done => false)
end