2017-07-01 00:10:47 +00:00
|
|
|
class HasteClient < Formula
|
|
|
|
desc "CLI client for haste-server"
|
|
|
|
homepage "https://hastebin.com/"
|
|
|
|
url "https://github.com/seejohnrun/haste-client/archive/v0.2.2.tar.gz"
|
|
|
|
sha256 "489ea560e788256ca1ca96a5efa4457a9e70c4f7893a760083c7d9f42b272f6b"
|
|
|
|
head "https://github.com/seejohnrun/haste-client.git"
|
|
|
|
|
2017-07-03 20:10:55 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "3c60485b86bdd3cc480a78bff9bdc3709c149c9800fdc80e9fcb7145bf184c9f" => :sierra
|
|
|
|
sha256 "c4ee0154b0c96463021362f0b3a7497d904d799c6948df2d13d039e4301f38a8" => :el_capitan
|
|
|
|
sha256 "7eff89acc8fa7b93406aa23cc0551cd7ebf5f191eb2df54ed4946d6bdd11e537" => :yosemite
|
|
|
|
end
|
|
|
|
|
2017-07-01 00:10:47 +00:00
|
|
|
depends_on :ruby => "2.3"
|
|
|
|
|
|
|
|
resource "faraday" do
|
|
|
|
url "https://rubygems.org/gems/faraday-0.12.1.gem"
|
|
|
|
sha256 "0350b3d3adc9418e4e761198866709fc1b27db116cf52484989aa94d084a7df2"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "multipart-post" do
|
|
|
|
url "https://rubygems.org/gems/multipart-post-2.0.0.gem"
|
|
|
|
sha256 "3dc44e50d3df3d42da2b86272c568fd7b75c928d8af3cc5f9834e2e5d9586026"
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV["GEM_HOME"] = libexec
|
|
|
|
resources.each do |r|
|
|
|
|
r.verify_download_integrity(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
|