lib/todoist/plugin.rb in danger-todoist-0.0.3 vs lib/todoist/plugin.rb in danger-todoist-0.1.0

- old
+ new

@@ -53,10 +53,13 @@ return if @todos.nil? return if @todos.empty? markdown("#### Todos left in files") - @todos.each { |todo| markdown("- #{todo.file}") } + @todos.each do |todo| + text = ": #{todo.text}" if todo.text + markdown("- #{todo.file}#{text}") + end end private def message