homebrew-core/Formula/gitlab-gem.rb
2018-11-16 16:07:25 +08:00

56 lines
2 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.7.0.tar.gz"
sha256 "60a3fb5506344d2a5193482b6db860610e6655d8bf78e3c2bbc3cd4bc15e5004"
bottle do
cellar :any_skip_relocation
sha256 "bacfbdc77aa44ff866ef3419ff5294f408ecb8fa5c8545d1a1dbab2ab79c2593" => :mojave
sha256 "89bb760275bbf2155808c35db23389e38e2afebf0e631da08c9f71448219676f" => :high_sierra
sha256 "db6d8c27284ba96c17238d89515fbaf36fb9598e12f291be7816bff1b9129e99" => :sierra
end
depends_on "ruby" if MacOS.version <= :mountain_lion
resource "httparty" do
url "https://rubygems.org/gems/httparty-0.16.2.gem"
sha256 "fc67e5ba443b5ca822c2babccd3c6ed8bcc75fb67432b99652cb95972d204cff"
end
resource "terminal-table" do
url "https://rubygems.org/gems/terminal-table-1.8.0.gem"
sha256 "13371f069af18e9baa4e44d404a4ada9301899ce0530c237ac1a96c19f652294"
end
resource "multi_xml" do
url "https://rubygems.org/gems/multi_xml-0.6.0.gem"
sha256 "d24393cf958adb226db884b976b007914a89c53ad88718e25679d7008823ad52"
end
resource "unicode-display_width" do
url "https://rubygems.org/gems/unicode-display_width-1.4.0.gem"
sha256 "a72802fd6345c0da220e8088b27f1800924b74d222621a06477757769b5e8000"
end
def install
ENV["GEM_HOME"] = libexec
resources.each do |r|
r.verify_download_integrity(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