module CCEngine::Category

Public Class Methods

bug_risk() click to toggle source
# File lib/cc_engine/category.rb, line 3
def self.bug_risk
  "Bug Risk"
end
clarity() click to toggle source
# File lib/cc_engine/category.rb, line 7
def self.clarity
  "Clarity"
end
compatibility() click to toggle source
# File lib/cc_engine/category.rb, line 11
def self.compatibility
  "Compatibility"
end
complexity() click to toggle source
# File lib/cc_engine/category.rb, line 15
def self.complexity
  "Complexity"
end
duplication() click to toggle source
# File lib/cc_engine/category.rb, line 19
def self.duplication
  "Duplication"
end
security() click to toggle source
# File lib/cc_engine/category.rb, line 23
def self.security
  "Security"
end
style() click to toggle source
# File lib/cc_engine/category.rb, line 27
def self.style
  "Style"
end