# File lib/hammer_cli/options/matcher.rb, line 11
      def matches?(option)
        @filter.each do |attribute, filter|
          return false if !attribute_matches?(option, attribute, filter)
        end
        return true
      end