Class: Dependabot::GitMetadataFetcher
- Inherits:
-
Object
- Object
- Dependabot::GitMetadataFetcher
- Defined in:
- lib/dependabot/git_metadata_fetcher.rb
Constant Summary collapse
- KNOWN_HOSTS =
/github\.com|bitbucket\.org|gitlab.com/.freeze
Instance Method Summary collapse
-
#initialize(url:, credentials:) ⇒ GitMetadataFetcher
constructor
A new instance of GitMetadataFetcher.
- #tags ⇒ Object
- #upload_pack ⇒ Object
Constructor Details
#initialize(url:, credentials:) ⇒ GitMetadataFetcher
Returns a new instance of GitMetadataFetcher.
10 11 12 13 |
# File 'lib/dependabot/git_metadata_fetcher.rb', line 10 def initialize(url:, credentials:) @url = url @credentials = credentials end |
Instance Method Details
#tags ⇒ Object
19 20 21 22 23 |
# File 'lib/dependabot/git_metadata_fetcher.rb', line 19 def return [] unless upload_pack @tags ||= (upload_pack) end |
#upload_pack ⇒ Object
15 16 17 |
# File 'lib/dependabot/git_metadata_fetcher.rb', line 15 def upload_pack @upload_pack ||= fetch_upload_pack_for(url) end |