# File lib/mspec/utils/options.rb, line 426
426:   def action_filters
427:     on("-K", "--action-tag", "TAG",
428:        "Spec descriptions marked with TAG will trigger the specified action") do |o|
429:       config[:atags] << o
430:     end
431:     on("-S", "--action-string", "STR",
432:        "Spec descriptions matching STR will trigger the specified action") do |o|
433:       config[:astrings] << o
434:     end
435:   end