# File lib/mspec/runner/actions/tagpurge.rb, line 36
36:   def unload
37:     if @filter
38:       matched = @tags.select { |t| @matching.any? { |s| s == t.description } }
39:       MSpec.write_tags matched
40: 
41:       (@tags - matched).each { |t| print t.description, "\n" }
42:     else
43:       MSpec.delete_tags
44:     end
45:   end