class Todo::Task
Monkeypatch `todo-txt-gem` to create ANSI decorated terminal output.
Public Instance Methods
to_s_highlighted()
click to toggle source
# File lib/gem_ext/todo-txt.rb, line 3 def to_s_highlighted # If stdout is not a tty, then return the raw string as the output is # probably being piped to a file and the color codes will make a mess. return to_s unless STDOUT.tty? pastel = Pastel.new if done? # Completed tasks are rendered with a strikethrough pastel.strikethrough(to_s) else # Open tasks delegate to the custom formatting function print_open_task(pastel) end end
Private Instance Methods
print_open_task(pastel)
click to toggle source
# File lib/gem_ext/todo-txt.rb, line 20 def print_open_task(pastel) [ pastel.red(print_priority), pastel.yellow(created_on.to_s), text, pastel.bold.magenta(print_contexts), pastel.bold.blue(print_projects), pastel.bold.cyan(print_tags) ].reject { |item| !item || item.nil? || item.empty? }.join(' ') end