Sha256: 09eb02de5bb8051a836c210d9c488a60926ffb802d622e9fa16f6794f7b853ac
Contents?: true
Size: 735 Bytes
Versions: 153
Compression:
Stored size: 735 Bytes
Contents
module CC module Analyzer module IssueValidations class CategoryValidation < Validation CATEGORIES = [ "Bug Risk".freeze, "Clarity".freeze, "Compatibility".freeze, "Complexity".freeze, "Duplication".freeze, "Performance".freeze, "Security".freeze, "Style".freeze, ].freeze def valid? object["categories"].present? && no_invalid_categories? end def message "Category must be at least one of #{CATEGORIES.join(", ")}" end private def no_invalid_categories? (CATEGORIES | object["categories"]) == CATEGORIES end end end end end
Version data entries
153 entries across 153 versions & 2 rubygems