class Markdo::TomorrowCommand

Public Instance Methods

run() click to toggle source
# File lib/markdo/commands/tomorrow_command.rb, line 6
def run
  task_collection.due_tomorrow.each do |task|
    @stdout.puts(task.line)
  end
end