Class: Klee::Codebase
- Inherits:
-
Object
- Object
- Klee::Codebase
- Defined in:
- lib/klee/codebase.rb
Instance Method Summary collapse
- #collaborators ⇒ Object
- #concepts ⇒ Object
-
#initialize(*patterns, ignore: [], threshold: 2) ⇒ Codebase
constructor
A new instance of Codebase.
Constructor Details
#initialize(*patterns, ignore: [], threshold: 2) ⇒ Codebase
Returns a new instance of Codebase.
5 6 7 8 9 |
# File 'lib/klee/codebase.rb', line 5 def initialize(*patterns, ignore: [], threshold: 2) @patterns = patterns @ignore = ignore @threshold = threshold end |
Instance Method Details
#collaborators ⇒ Object
15 16 17 |
# File 'lib/klee/codebase.rb', line 15 def collaborators @collaborators ||= build_collaborator_index end |
#concepts ⇒ Object
11 12 13 |
# File 'lib/klee/codebase.rb', line 11 def concepts @concepts ||= build_concept_index end |