utils/github/api: remove 'api' from method names

This commit is contained in:
nandahkrishna 2021-02-17 23:22:26 +05:30
parent 6d948bf6ab
commit f7c8810214
No known key found for this signature in database
GPG Key ID: 067E5FCD58ADF3AA
9 changed files with 64 additions and 63 deletions

View File

@ -55,7 +55,7 @@ module Homebrew
files["00.tap.out"] = { content: tap } files["00.tap.out"] = { content: tap }
end end
odie "`brew gist-logs` requires HOMEBREW_GITHUB_API_TOKEN to be set!" if GitHub::API.api_credentials_type == :none odie "`brew gist-logs` requires HOMEBREW_GITHUB_API_TOKEN to be set!" if GitHub::API.credentials_type == :none
# Description formatted to work well as page title when viewing gist # Description formatted to work well as page title when viewing gist
descr = if f.core_formula? descr = if f.core_formula?

View File

@ -337,9 +337,9 @@ module Homebrew
end end
def download_artifact(url, dir, pr) def download_artifact(url, dir, pr)
odie "Credentials must be set to access the Artifacts API" if GitHub::API.api_credentials_type == :none odie "Credentials must be set to access the Artifacts API" if GitHub::API.credentials_type == :none
token = GitHub::API.api_credentials token = GitHub::API.credentials
curl_args = ["--header", "Authorization: token #{token}"] curl_args = ["--header", "Authorization: token #{token}"]
# Download the artifact as a zip file and unpack it into `dir`. This is # Download the artifact as a zip file and unpack it into `dir`. This is

View File

@ -89,7 +89,7 @@ module Homebrew
begin begin
release = GitHub.create_or_update_release "Homebrew", "brew", new_version, body: release_notes, draft: true release = GitHub.create_or_update_release "Homebrew", "brew", new_version, body: release_notes, draft: true
rescue *GitHub::API::API_ERRORS => e rescue *GitHub::API::ERRORS => e
odie "Unable to create release: #{e.message}!" odie "Unable to create release: #{e.message}!"
end end

View File

@ -21,7 +21,7 @@ describe Homebrew::Search do
end end
it "does not raise if the network fails" do it "does not raise if the network fails" do
allow(GitHub::API).to receive(:open_api).and_raise(GitHub::API::Error) allow(GitHub::API).to receive(:open_rest).and_raise(GitHub::API::Error)
expect(mod.search_taps("some-formula")) expect(mod.search_taps("some-formula"))
.to match(formulae: [], casks: []) .to match(formulae: [], casks: [])
@ -45,7 +45,7 @@ describe Homebrew::Search do
], ],
} }
allow(GitHub::API).to receive(:open_api).and_yield(json_response) allow(GitHub::API).to receive(:open_rest).and_yield(json_response)
expect(mod.search_taps("some-formula")) expect(mod.search_taps("some-formula"))
.to match(formulae: ["homebrew/foo/some-formula"], casks: ["homebrew/bar/some-cask"]) .to match(formulae: ["homebrew/foo/some-formula"], casks: ["homebrew/bar/some-cask"])

View File

@ -216,7 +216,7 @@ describe Tap do
end end
specify "#private?" do specify "#private?" do
skip "HOMEBREW_GITHUB_API_TOKEN is required" unless GitHub::API.api_credentials skip "HOMEBREW_GITHUB_API_TOKEN is required" unless GitHub::API.credentials
expect(homebrew_foo_tap).to be_private expect(homebrew_foo_tap).to be_private
end end

View File

@ -14,9 +14,9 @@ module GitHub
module_function module_function
def open_api(url, data: nil, data_binary_path: nil, request_method: nil, scopes: [].freeze, parse_json: true) def open_api(url, data: nil, data_binary_path: nil, request_method: nil, scopes: [].freeze, parse_json: true)
odeprecated "GitHub.open_api", "GitHub::API.open_api" odeprecated "GitHub.open_api", "GitHub::API.open_rest"
API.open_api(url, data: data, data_binary_path: data_binary_path, request_method: request_method, API.open_rest(url, data: data, data_binary_path: data_binary_path, request_method: request_method,
scopes: scopes, parse_json: parse_json) scopes: scopes, parse_json: parse_json)
end end
def check_runs(repo: nil, commit: nil, pr: nil) def check_runs(repo: nil, commit: nil, pr: nil)
@ -25,11 +25,11 @@ module GitHub
commit = pr.fetch("head").fetch("sha") commit = pr.fetch("head").fetch("sha")
end end
API.open_api(url_to("repos", repo, "commits", commit, "check-runs")) API.open_rest(url_to("repos", repo, "commits", commit, "check-runs"))
end end
def create_check_run(repo:, data:) def create_check_run(repo:, data:)
API.open_api(url_to("repos", repo, "check-runs"), data: data) API.open_rest(url_to("repos", repo, "check-runs"), data: data)
end end
def search_issues(query, **qualifiers) def search_issues(query, **qualifiers)
@ -39,17 +39,17 @@ module GitHub
def create_gist(files, description, private:) def create_gist(files, description, private:)
url = "https://api.github.com/gists" url = "https://api.github.com/gists"
data = { "public" => !private, "files" => files, "description" => description } data = { "public" => !private, "files" => files, "description" => description }
API.open_api(url, data: data, scopes: CREATE_GIST_SCOPES)["html_url"] API.open_rest(url, data: data, scopes: CREATE_GIST_SCOPES)["html_url"]
end end
def create_issue(repo, title, body) def create_issue(repo, title, body)
url = "https://api.github.com/repos/#{repo}/issues" url = "https://api.github.com/repos/#{repo}/issues"
data = { "title" => title, "body" => body } data = { "title" => title, "body" => body }
API.open_api(url, data: data, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)["html_url"] API.open_rest(url, data: data, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)["html_url"]
end end
def repository(user, repo) def repository(user, repo)
API.open_api(url_to("repos", user, repo)) API.open_rest(url_to("repos", user, repo))
end end
def search_code(**qualifiers) def search_code(**qualifiers)
@ -68,11 +68,11 @@ module GitHub
end end
def user def user
@user ||= API.open_api("#{API_URL}/user") @user ||= API.open_rest("#{API_URL}/user")
end end
def permission(repo, user) def permission(repo, user)
API.open_api("#{API_URL}/repos/#{repo}/collaborators/#{user}/permission") API.open_rest("#{API_URL}/repos/#{repo}/collaborators/#{user}/permission")
end end
def write_access?(repo, user = nil) def write_access?(repo, user = nil)
@ -82,14 +82,14 @@ module GitHub
def pull_requests(repo, **options) def pull_requests(repo, **options)
url = "#{API_URL}/repos/#{repo}/pulls?#{URI.encode_www_form(options)}" url = "#{API_URL}/repos/#{repo}/pulls?#{URI.encode_www_form(options)}"
API.open_api(url) API.open_rest(url)
end end
def merge_pull_request(repo, number:, sha:, merge_method:, commit_message: nil) def merge_pull_request(repo, number:, sha:, merge_method:, commit_message: nil)
url = "#{API_URL}/repos/#{repo}/pulls/#{number}/merge" url = "#{API_URL}/repos/#{repo}/pulls/#{number}/merge"
data = { sha: sha, merge_method: merge_method } data = { sha: sha, merge_method: merge_method }
data[:commit_message] = commit_message if commit_message data[:commit_message] = commit_message if commit_message
API.open_api(url, data: data, request_method: :PUT, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES) API.open_rest(url, data: data, request_method: :PUT, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
end end
def print_pull_requests_matching(query, only = nil) def print_pull_requests_matching(query, only = nil)
@ -119,14 +119,14 @@ module GitHub
url = "#{API_URL}/repos/#{repo}/forks" url = "#{API_URL}/repos/#{repo}/forks"
data = {} data = {}
scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
API.open_api(url, data: data, scopes: scopes) API.open_rest(url, data: data, scopes: scopes)
end end
def check_fork_exists(repo) def check_fork_exists(repo)
_, reponame = repo.split("/") _, reponame = repo.split("/")
username = API.open_api(url_to("user")) { |json| json["login"] } username = API.open_rest(url_to("user")) { |json| json["login"] }
json = API.open_api(url_to("repos", username, reponame)) json = API.open_rest(url_to("repos", username, reponame))
return false if json["message"] == "Not Found" return false if json["message"] == "Not Found"
@ -137,12 +137,12 @@ module GitHub
url = "#{API_URL}/repos/#{repo}/pulls" url = "#{API_URL}/repos/#{repo}/pulls"
data = { title: title, head: head, base: base, body: body } data = { title: title, head: head, base: base, body: body }
scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
API.open_api(url, data: data, scopes: scopes) API.open_rest(url, data: data, scopes: scopes)
end end
def private_repo?(full_name) def private_repo?(full_name)
uri = url_to "repos", full_name uri = url_to "repos", full_name
API.open_api(uri) { |json| json["private"] } API.open_rest(uri) { |json| json["private"] }
end end
def query_string(*main_params, **qualifiers) def query_string(*main_params, **qualifiers)
@ -162,7 +162,7 @@ module GitHub
def search(entity, *queries, **qualifiers) def search(entity, *queries, **qualifiers)
uri = url_to "search", entity uri = url_to "search", entity
uri.query = query_string(*queries, **qualifiers) uri.query = query_string(*queries, **qualifiers)
API.open_api(uri) { |json| json.fetch("items", []) } API.open_rest(uri) { |json| json.fetch("items", []) }
end end
def approved_reviews(user, repo, pr, commit: nil) def approved_reviews(user, repo, pr, commit: nil)
@ -208,26 +208,26 @@ module GitHub
def dispatch_event(user, repo, event, **payload) def dispatch_event(user, repo, event, **payload)
url = "#{API_URL}/repos/#{user}/#{repo}/dispatches" url = "#{API_URL}/repos/#{user}/#{repo}/dispatches"
API.open_api(url, data: { event_type: event, client_payload: payload }, API.open_rest(url, data: { event_type: event, client_payload: payload },
request_method: :POST, request_method: :POST,
scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES) scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
end end
def workflow_dispatch_event(user, repo, workflow, ref, **inputs) def workflow_dispatch_event(user, repo, workflow, ref, **inputs)
url = "#{API_URL}/repos/#{user}/#{repo}/actions/workflows/#{workflow}/dispatches" url = "#{API_URL}/repos/#{user}/#{repo}/actions/workflows/#{workflow}/dispatches"
API.open_api(url, data: { ref: ref, inputs: inputs }, API.open_rest(url, data: { ref: ref, inputs: inputs },
request_method: :POST, request_method: :POST,
scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES) scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
end end
def get_release(user, repo, tag) def get_release(user, repo, tag)
url = "#{API_URL}/repos/#{user}/#{repo}/releases/tags/#{tag}" url = "#{API_URL}/repos/#{user}/#{repo}/releases/tags/#{tag}"
API.open_api(url, request_method: :GET) API.open_rest(url, request_method: :GET)
end end
def get_latest_release(user, repo) def get_latest_release(user, repo)
url = "#{API_URL}/repos/#{user}/#{repo}/releases/latest" url = "#{API_URL}/repos/#{user}/#{repo}/releases/latest"
API.open_api(url, request_method: :GET) API.open_rest(url, request_method: :GET)
end end
def create_or_update_release(user, repo, tag, id: nil, name: nil, body: nil, draft: false) def create_or_update_release(user, repo, tag, id: nil, name: nil, body: nil, draft: false)
@ -244,24 +244,24 @@ module GitHub
draft: draft, draft: draft,
} }
data[:body] = body if body.present? data[:body] = body if body.present?
API.open_api(url, data: data, request_method: method, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES) API.open_rest(url, data: data, request_method: method, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
end end
def upload_release_asset(user, repo, id, local_file: nil, remote_file: nil) def upload_release_asset(user, repo, id, local_file: nil, remote_file: nil)
url = "https://uploads.github.com/repos/#{user}/#{repo}/releases/#{id}/assets" url = "https://uploads.github.com/repos/#{user}/#{repo}/releases/#{id}/assets"
url += "?name=#{remote_file}" if remote_file url += "?name=#{remote_file}" if remote_file
API.open_api(url, data_binary_path: local_file, request_method: :POST, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES) API.open_rest(url, data_binary_path: local_file, request_method: :POST, scopes: CREATE_ISSUE_FORK_OR_PR_SCOPES)
end end
def get_workflow_run(user, repo, pr, workflow_id: "tests.yml", artifact_name: "bottles") def get_workflow_run(user, repo, pr, workflow_id: "tests.yml", artifact_name: "bottles")
scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES scopes = CREATE_ISSUE_FORK_OR_PR_SCOPES
base_url = "#{API_URL}/repos/#{user}/#{repo}" base_url = "#{API_URL}/repos/#{user}/#{repo}"
pr_payload = API.open_api("#{base_url}/pulls/#{pr}", scopes: scopes) pr_payload = API.open_rest("#{base_url}/pulls/#{pr}", scopes: scopes)
pr_sha = pr_payload["head"]["sha"] pr_sha = pr_payload["head"]["sha"]
pr_branch = URI.encode_www_form_component(pr_payload["head"]["ref"]) pr_branch = URI.encode_www_form_component(pr_payload["head"]["ref"])
parameters = "event=pull_request&branch=#{pr_branch}" parameters = "event=pull_request&branch=#{pr_branch}"
workflow = API.open_api("#{base_url}/actions/workflows/#{workflow_id}/runs?#{parameters}", scopes: scopes) workflow = API.open_rest("#{base_url}/actions/workflows/#{workflow_id}/runs?#{parameters}", scopes: scopes)
workflow_run = workflow["workflow_runs"].select do |run| workflow_run = workflow["workflow_runs"].select do |run|
run["head_sha"] == pr_sha run["head_sha"] == pr_sha
end end
@ -289,7 +289,7 @@ module GitHub
EOS EOS
end end
artifacts = API.open_api(workflow_run.first["artifacts_url"], scopes: scopes) artifacts = API.open_rest(workflow_run.first["artifacts_url"], scopes: scopes)
artifact = artifacts["artifacts"].select do |art| artifact = artifacts["artifacts"].select do |art|
art["name"] == artifact_name art["name"] == artifact_name
@ -310,7 +310,7 @@ module GitHub
members = [] members = []
(1..API_MAX_PAGES).each do |page| (1..API_MAX_PAGES).each do |page|
result = API.open_api("#{url}&page=#{page}").map { |member| member["login"] } result = API.open_rest("#{url}&page=#{page}").map { |member| member["login"] }
members.concat(result) members.concat(result)
return members if result.length < per_page return members if result.length < per_page
@ -402,7 +402,7 @@ module GitHub
end end
def get_repo_license(user, repo) def get_repo_license(user, repo)
response = API.open_api("#{API_URL}/repos/#{user}/#{repo}/license") response = API.open_rest("#{API_URL}/repos/#{user}/#{repo}/license")
return unless response.key?("license") return unless response.key?("license")
response["license"]["spdx_id"] response["license"]["spdx_id"]
@ -428,7 +428,7 @@ module GitHub
def check_for_duplicate_pull_requests(name, tap_full_name, state:, file:, args:, version: nil) def check_for_duplicate_pull_requests(name, tap_full_name, state:, file:, args:, version: nil)
pull_requests = fetch_pull_requests(name, tap_full_name, state: state, version: version).select do |pr| pull_requests = fetch_pull_requests(name, tap_full_name, state: state, version: version).select do |pr|
pr_files = API.open_api(url_to("repos", tap_full_name, "pulls", pr["number"], "files")) pr_files = API.open_rest(url_to("repos", tap_full_name, "pulls", pr["number"], "files"))
pr_files.any? { |f| f["filename"] == file } pr_files.any? { |f| f["filename"] == file }
end end
return if pull_requests.blank? return if pull_requests.blank?
@ -505,7 +505,7 @@ module GitHub
else else
begin begin
remote_url, username = forked_repo_info!(tap_full_name) remote_url, username = forked_repo_info!(tap_full_name)
rescue *API::API_ERRORS => e rescue *API::ERRORS => e
sourcefile_path.atomic_write(old_contents) sourcefile_path.atomic_write(old_contents)
odie "Unable to fork: #{e.message}!" odie "Unable to fork: #{e.message}!"
end end
@ -545,7 +545,7 @@ module GitHub
else else
exec_browser url exec_browser url
end end
rescue *API::API_ERRORS => e rescue *API::ERRORS => e
odie "Unable to open pull request: #{e.message}!" odie "Unable to open pull request: #{e.message}!"
end end
end end
@ -553,7 +553,7 @@ module GitHub
end end
def pull_request_commits(user, repo, pr, per_page: 100) def pull_request_commits(user, repo, pr, per_page: 100)
pr_data = API.open_api(url_to("repos", user, repo, "pulls", pr)) pr_data = API.open_rest(url_to("repos", user, repo, "pulls", pr))
commits_api = pr_data["commits_url"] commits_api = pr_data["commits_url"]
commit_count = pr_data["commits"] commit_count = pr_data["commits"]
commits = [] commits = []
@ -563,7 +563,7 @@ module GitHub
end end
(1..API_MAX_PAGES).each do |page| (1..API_MAX_PAGES).each do |page|
result = API.open_api(commits_api + "?per_page=#{per_page}&page=#{page}") result = API.open_rest(commits_api + "?per_page=#{per_page}&page=#{page}")
commits.concat(result.map { |c| c["sha"] }) commits.concat(result.map { |c| c["sha"] })
return commits if commits.length == commit_count return commits if commits.length == commit_count
@ -575,7 +575,7 @@ module GitHub
end end
def pull_request_labels(user, repo, pr) def pull_request_labels(user, repo, pr)
pr_data = API.open_api(url_to("repos", user, repo, "pulls", pr)) pr_data = API.open_rest(url_to("repos", user, repo, "pulls", pr))
pr_data["labels"].map { |label| label["name"] } pr_data["labels"].map { |label| label["name"] }
end end
end end

View File

@ -103,7 +103,7 @@ module GitHub
end end
end end
API_ERRORS = [ ERRORS = [
AuthenticationFailedError, AuthenticationFailedError,
HTTPNotFoundError, HTTPNotFoundError,
RateLimitExceededError, RateLimitExceededError,
@ -138,14 +138,14 @@ module GitHub
nil nil
end end
def api_credentials def credentials
@api_credentials ||= begin @credentials ||= begin
Homebrew::EnvConfig.github_api_token || keychain_username_password Homebrew::EnvConfig.github_api_token || keychain_username_password
end end
end end
sig { returns(Symbol) } sig { returns(Symbol) }
def api_credentials_type def credentials_type
if Homebrew::EnvConfig.github_api_token if Homebrew::EnvConfig.github_api_token
:env_token :env_token
elsif keychain_username_password elsif keychain_username_password
@ -157,7 +157,7 @@ module GitHub
# Given an API response from GitHub, warn the user if their credentials # Given an API response from GitHub, warn the user if their credentials
# have insufficient permissions. # have insufficient permissions.
def api_credentials_error_message(response_headers, needed_scopes) def credentials_error_message(response_headers, needed_scopes)
return if response_headers.empty? return if response_headers.empty?
scopes = response_headers["x-accepted-oauth-scopes"].to_s.split(", ") scopes = response_headers["x-accepted-oauth-scopes"].to_s.split(", ")
@ -168,14 +168,14 @@ module GitHub
needed_scopes = needed_scopes.to_a.join(", ").presence || "none" needed_scopes = needed_scopes.to_a.join(", ").presence || "none"
credentials_scopes = "none" if credentials_scopes.blank? credentials_scopes = "none" if credentials_scopes.blank?
what = case api_credentials_type what = case credentials_type
when :keychain_username_password when :keychain_username_password
"macOS keychain GitHub" "macOS keychain GitHub"
when :env_token when :env_token
"HOMEBREW_GITHUB_API_TOKEN" "HOMEBREW_GITHUB_API_TOKEN"
end end
@api_credentials_error_message ||= onoe <<~EOS @credentials_error_message ||= onoe <<~EOS
Your #{what} credentials do not have sufficient scope! Your #{what} credentials do not have sufficient scope!
Scopes required: #{needed_scopes} Scopes required: #{needed_scopes}
Scopes present: #{credentials_scopes} Scopes present: #{credentials_scopes}
@ -183,15 +183,15 @@ module GitHub
EOS EOS
end end
def open_api(url, data: nil, data_binary_path: nil, request_method: nil, scopes: [].freeze, parse_json: true) def open_rest(url, data: nil, data_binary_path: nil, request_method: nil, scopes: [].freeze, parse_json: true)
# This is a no-op if the user is opting out of using the GitHub API. # This is a no-op if the user is opting out of using the GitHub API.
return block_given? ? yield({}) : {} if Homebrew::EnvConfig.no_github_api? return block_given? ? yield({}) : {} if Homebrew::EnvConfig.no_github_api?
args = ["--header", "Accept: application/vnd.github.v3+json", "--write-out", "\n%\{http_code}"] args = ["--header", "Accept: application/vnd.github.v3+json", "--write-out", "\n%\{http_code}"]
args += ["--header", "Accept: application/vnd.github.antiope-preview+json"] args += ["--header", "Accept: application/vnd.github.antiope-preview+json"]
token = api_credentials token = credentials
args += ["--header", "Authorization: token #{token}"] unless api_credentials_type == :none args += ["--header", "Authorization: token #{token}"] unless credentials_type == :none
data_tmpfile = nil data_tmpfile = nil
if data if data
@ -234,7 +234,7 @@ module GitHub
end end
begin begin
raise_api_error(output, errors, http_code, headers, scopes) if !http_code.start_with?("2") || !status.success? raise_error(output, errors, http_code, headers, scopes) if !http_code.start_with?("2") || !status.success?
return if http_code == "204" # No Content return if http_code == "204" # No Content
@ -251,7 +251,7 @@ module GitHub
def open_graphql(query, scopes: [].freeze) def open_graphql(query, scopes: [].freeze)
data = { query: query } data = { query: query }
result = open_api("https://api.github.com/graphql", scopes: scopes, data: data, request_method: "POST") result = open_rest("https://api.github.com/graphql", scopes: scopes, data: data, request_method: "POST")
if result["errors"].present? if result["errors"].present?
raise Error, result["errors"].map { |e| raise Error, result["errors"].map { |e|
@ -262,7 +262,7 @@ module GitHub
result["data"] result["data"]
end end
def raise_api_error(output, errors, http_code, headers, scopes) def raise_error(output, errors, http_code, headers, scopes)
json = begin json = begin
JSON.parse(output) JSON.parse(output)
rescue rescue
@ -284,13 +284,13 @@ module GitHub
raise RateLimitExceededError.new(reset, message) raise RateLimitExceededError.new(reset, message)
end end
api_credentials_error_message(meta, scopes) credentials_error_message(meta, scopes)
case http_code case http_code
when "401", "403" when "401", "403"
raise AuthenticationFailedError, message raise AuthenticationFailedError, message
when "404" when "404"
raise MissingAuthenticationError if api_credentials_type == :none && scopes.present? raise MissingAuthenticationError if credentials_type == :none && scopes.present?
raise HTTPNotFoundError, message raise HTTPNotFoundError, message
when "422" when "422"

View File

@ -23,8 +23,9 @@ module SharedAudits
def github_release_data(user, repo, tag) def github_release_data(user, repo, tag)
id = "#{user}/#{repo}/#{tag}" id = "#{user}/#{repo}/#{tag}"
url = "#{GitHub::API_URL}/repos/#{user}/#{repo}/releases/tags/#{tag}"
@github_release_data ||= {} @github_release_data ||= {}
@github_release_data[id] ||= GitHub::API.open_api("#{GitHub::API_URL}/repos/#{user}/#{repo}/releases/tags/#{tag}") @github_release_data[id] ||= GitHub::API.open_rest(url)
@github_release_data[id] @github_release_data[id]
rescue GitHub::API::HTTPNotFoundError rescue GitHub::API::HTTPNotFoundError

View File

@ -29,7 +29,7 @@ module SPDX
end end
def latest_tag def latest_tag
@latest_tag ||= GitHub::API.open_api(API_URL)["tag_name"] @latest_tag ||= GitHub::API.open_rest(API_URL)["tag_name"]
end end
def download_latest_license_data!(to: DATA_PATH) def download_latest_license_data!(to: DATA_PATH)