Skip to content

Instantly share code, notes, and snippets.

@omerxx
Created July 28, 2018 16:43
Show Gist options
  • Save omerxx/51a27df5433ec063b26d61ebb482599a to your computer and use it in GitHub Desktop.
Save omerxx/51a27df5433ec063b26d61ebb482599a to your computer and use it in GitHub Desktop.
class Mytool < Formula
desc "It does this and that"
homepage "https://github.com/myaccount/mytool"
url "https://github.com/myaccount/mytool/releases/download/v0.1.1/mytool.tar.gz"
sha256 "<SHA256>"
def install
bin.install "fed"
end
test do
assert_match "mytool version 1.0.0", shell_output("#{bin}/mytool -v", 2)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment