66 lines
2.5 KiB
Ruby
66 lines
2.5 KiB
Ruby
class HasteClient < Formula
|
|
desc "CLI client for haste-server"
|
|
homepage "https://hastebin.com/"
|
|
license "MIT"
|
|
revision 6
|
|
head "https://github.com/toptal/haste-client.git", branch: "master"
|
|
|
|
stable do
|
|
url "https://github.com/toptal/haste-client/archive/v0.2.3.tar.gz"
|
|
sha256 "becbc13c964bb88841a440db4daff8e535e49cc03df7e1eddf16f95e2696cbaf"
|
|
|
|
# Remove for > 0.2.3
|
|
# Upstream commit from 19 Jul 2017 "Bump version to 0.2.3"
|
|
patch do
|
|
url "https://github.com/toptal/haste-client/commit/1037d89.patch?full_index=1"
|
|
sha256 "1e9c47f35c65f253fd762c673b7677921b333c02d2c4e4ae5f182fcd6a5747c6"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "bdc96fa486c1eda47dce4e807857784edb28f9b37b39ca4644cb4363a686d335"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "b37f0ea5d4c45a13c49e4e88572a6998e9704d34ad145f763ba32e51af85e89a"
|
|
sha256 cellar: :any_skip_relocation, monterey: "bdc96fa486c1eda47dce4e807857784edb28f9b37b39ca4644cb4363a686d335"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "b37f0ea5d4c45a13c49e4e88572a6998e9704d34ad145f763ba32e51af85e89a"
|
|
sha256 cellar: :any_skip_relocation, catalina: "b37f0ea5d4c45a13c49e4e88572a6998e9704d34ad145f763ba32e51af85e89a"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "f58ba7733cf6b73c7ad7be755d4d31c88af9577a43f9cd4658d8732bdd8bad3b"
|
|
end
|
|
|
|
uses_from_macos "ruby", since: :high_sierra
|
|
|
|
resource "faraday" do
|
|
url "https://rubygems.org/gems/faraday-0.17.4.gem"
|
|
sha256 "11677b5b261fbbfd4d959f702078d81c0bb66006c00ab2f329f32784778e4d9c"
|
|
end
|
|
|
|
resource "json" do
|
|
on_system :linux, macos: :sierra_or_older do
|
|
url "https://rubygems.org/gems/json-2.5.1.gem"
|
|
sha256 "918d8c41dacb7cfdbe0c7bbd6014a5372f0cf1c454ca150e9f4010fe80cc3153"
|
|
end
|
|
end
|
|
|
|
resource "multipart-post" do
|
|
url "https://rubygems.org/gems/multipart-post-2.1.1.gem"
|
|
sha256 "d2dd7aa957650e0d99e0513cd388401b069f09528441b87d884609c8e94ffcfd"
|
|
end
|
|
|
|
def install
|
|
ENV["GEM_HOME"] = libexec
|
|
resources.each do |r|
|
|
r.fetch
|
|
system "gem", "install", r.cached_download, "--no-document",
|
|
"--install-dir", libexec
|
|
end
|
|
system "gem", "build", "haste.gemspec"
|
|
system "gem", "install", "--ignore-dependencies", "haste-#{version}.gem"
|
|
bin.install libexec/"bin/haste"
|
|
bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV["GEM_HOME"])
|
|
end
|
|
|
|
test do
|
|
output = pipe_output("#{bin}/haste", "testing", 0)
|
|
assert_match(%r{^https://hastebin\.com/.+}, output)
|
|
end
|
|
end
|