class HasteClient < Formula desc "CLI client for haste-server" homepage "https://hastebin.com/" revision 3 head "https://github.com/seejohnrun/haste-client.git" stable do url "https://github.com/seejohnrun/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/seejohnrun/haste-client/commit/1037d89.patch?full_index=1" sha256 "1e9c47f35c65f253fd762c673b7677921b333c02d2c4e4ae5f182fcd6a5747c6" end end bottle do cellar :any_skip_relocation sha256 "18cb87e89cbb1d141394d055b295377bf70f808901763d2b0fa38acf12e72204" => :mojave sha256 "e11fbbf6bab06ef1bda10174f263bf16fe7de2c3b8969b36bdaf178b171f8abf" => :high_sierra sha256 "85c7c24c6cb14d5cb948481aeac65928339dec7ff2ecc4220ccd5fb3bebfba79" => :sierra sha256 "2d6cee84eee9e2a0fc75a03ca6fbdb970dfa9ac6ecdeea6a4e32537ee1869fbf" => :el_capitan end depends_on "ruby" if MacOS.version <= :sierra resource "faraday" do url "https://rubygems.org/gems/faraday-0.12.2.gem" sha256 "6299046a78613ce330b67060e648a132ba7cca4f0ea769bc1d2bbcb22a23ec94" 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