Class: GitRefsFinder
- Inherits:
-
Object
- Object
- GitRefsFinder
- Includes:
- Gitlab::Utils::StrongMemoize
- Defined in:
- app/finders/git_refs_finder.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#next_cursor ⇒ Object
readonly
Returns the value of attribute next_cursor.
Instance Method Summary collapse
-
#initialize(repository, params = {}) ⇒ GitRefsFinder
constructor
A new instance of GitRefsFinder.
Constructor Details
#initialize(repository, params = {}) ⇒ GitRefsFinder
Returns a new instance of GitRefsFinder.
8 9 10 11 12 |
# File 'app/finders/git_refs_finder.rb', line 8 def initialize(repository, params = {}) @repository = repository @params = params @next_cursor = nil end |
Instance Attribute Details
#next_cursor ⇒ Object (readonly)
Returns the value of attribute next_cursor.
6 7 8 |
# File 'app/finders/git_refs_finder.rb', line 6 def next_cursor @next_cursor end |