homebrew-core/Formula/gitlab-gem.rb

67 lines
2.3 KiB
Ruby

class GitlabGem < Formula
desc "Ruby client and CLI for GitLab API"
homepage "https://github.com/NARKOZ/gitlab"
url "https://github.com/NARKOZ/gitlab/archive/v4.14.0.tar.gz"
sha256 "5cbad9b2ebb028f25bcc78cf3bb878dfc0350e1865b5f2f7cabfe47c885547b7"
bottle do
cellar :any_skip_relocation
sha256 "680e45bad2fef63bd5df25517e185894b9d79e529322d5364fc65dbbf646e876" => :catalina
sha256 "e770a298696ea437570775398ae2d9d5ae583f51ba0b8d347b052c8636596490" => :mojave
sha256 "a32923a073ad63900e49b2f18ae2fc64b93cc3cf88b6a3c8f2eaa419b23a0d04" => :high_sierra
end
uses_from_macos "ruby"
resource "httparty" do
url "https://rubygems.org/gems/httparty-0.18.0.gem"
sha256 "c6f77f117ca6e7aeaf5405d0992edd43f19f4fa5eea79e9a4fdfdb287cfeee6f"
end
resource "mime-types" do
url "https://rubygems.org/gems/mime-types-3.3.1.gem"
sha256 "708f737e28ceef48b9a1bc041aa9eec46fa36eb36acb95e6b64a9889131541fe"
end
resource "mime-types-data" do
url "https://rubygems.org/gems/mime-types-data-3.2019.1009.gem"
sha256 "b09bb0076f4d209d21de5f81569edffdb6e53d43f891e30edfa12433980ba6a3"
end
resource "multi_xml" do
url "https://rubygems.org/gems/multi_xml-0.6.0.gem"
sha256 "d24393cf958adb226db884b976b007914a89c53ad88718e25679d7008823ad52"
end
resource "terminal-table" do
url "https://rubygems.org/gems/terminal-table-1.8.0.gem"
sha256 "13371f069af18e9baa4e44d404a4ada9301899ce0530c237ac1a96c19f652294"
end
resource "unicode-display_width" do
url "https://rubygems.org/gems/unicode-display_width-1.6.1.gem"
sha256 "3d011d8ae44d35ddf1148bdf4de9fb4331dc53b5a39420c6336261823f65f7de"
end
def install
ENV["GEM_HOME"] = libexec
resources.each do |r|
r.fetch
system "gem", "install", r.cached_download, "--ignore-dependencies",
"--no-document", "--install-dir", libexec
end
system "gem", "build", "gitlab.gemspec"
system "gem", "install", "--ignore-dependencies", "gitlab-#{version}.gem"
bin.install "exe/gitlab"
bin.env_script_all_files(libexec/"exe", :GEM_HOME => ENV["GEM_HOME"])
libexec.install Dir["*"]
end
test do
ENV["GITLAB_API_ENDPOINT"] = "https://example.com/"
ENV["GITLAB_API_PRIVATE_TOKEN"] = "token"
output = shell_output("#{bin}/gitlab user 2>&1", 1)
assert_match "The response is not a valid JSON", output
end
end