Sha256: f67a27da6b7267bf2a8ca1e97b4661aacf771e811aac63d3050c1ab04a973abf
Contents?: true
Size: 885 Bytes
Versions: 17
Compression:
Stored size: 885 Bytes
Contents
module Inch module Language module Nodejs module Evaluation # Base class for all Nodejs related evaluations # # @abstract class Base < Inch::Evaluation::Proxy protected def relevant_base_roles { Role::Object::InRoot => nil, Role::Object::Public => nil, Role::Object::TaggedAsNodoc => nil, Role::Object::WithDoc => score_for(:docstring), Role::Object::WithoutDoc => score_for(:docstring), Role::Object::WithCodeExample => score_for(:code_example_single), Role::Object::WithMultipleCodeExamples => score_for(:code_example_multi), Role::Object::WithoutCodeExample => score_for(:code_example_single) } end end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems