class Markdo::TagCommand

Public Instance Methods

run(string) click to toggle source
# File lib/markdo/commands/tag_command.rb, line 5
def run(string)
  task_collection.with_tag(string).each do |task|
    @stdout.puts(task.line)
  end
end