Class: GitShizzle::IndexSpecifications::Base
- Inherits:
-
Object
- Object
- GitShizzle::IndexSpecifications::Base
show all
- Defined in:
- lib/git_shizzle/index_specifications/base.rb
Instance Method Summary
collapse
Instance Method Details
#include?(index) ⇒ Boolean
5
6
7
|
# File 'lib/git_shizzle/index_specifications/base.rb', line 5
def include?(index)
false
end
|
#matches ⇒ Object
13
14
15
|
# File 'lib/git_shizzle/index_specifications/base.rb', line 13
def matches
@matches ||= []
end
|
#register_match(index) ⇒ Object
9
10
11
|
# File 'lib/git_shizzle/index_specifications/base.rb', line 9
def register_match(index)
matches << index
end
|
#unmatched ⇒ Object
17
18
|
# File 'lib/git_shizzle/index_specifications/base.rb', line 17
def unmatched
end
|