# File lib/guard/dsl_describer.rb, line 41 def list(options) evaluate_guardfile(options) rows = ::Guard.guard_gem_names.sort.uniq.inject([]) do |rows, name| rows << { :Plugin => name.capitalize, :Guardfile => ::Guard.guards(name) ? '✔' : '✘' } end Formatador.display_compact_table(rows, [:Plugin, :Guardfile]) end