lib/inch/language/ruby/evaluation/class_variable_object.rb

Summary

Maintainability
A
25 mins
Test Coverage
module Inch
  module Language
    module Ruby
      module Evaluation
        class ClassVariableObject < Base
          protected

          def relevant_roles
            {
              Role::ClassVariable::WithDoc => score_for(:docstring),
              Role::ClassVariable::WithoutDoc => score_for(:docstring),
              Role::ClassVariable::TaggedAsNodoc => nil,
              Role::ClassVariable::Public => nil,
              Role::ClassVariable::Private => nil
            }
          end
        end
      end
    end
  end
end