# File lib/cucumber/cli/main.rb, line 70 def exceeded_tag_limts?(features) exceeded = false configuration.options[:tag_names].each do |tag_name, limit| if !Ast::Tags.exclude_tag?(tag_name) && limit tag_count = features.tag_count(tag_name) if tag_count > limit.to_i exceeded = true end end end exceeded end