-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyogev.rb
26 lines (23 loc) · 1.01 KB
/
yogev.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
class Yogev < Formula
desc "CLI bot that will provide you with statistical facts and other interesting and weird features"
homepage "https://github.com/roycald245/homebrew-yogev"
url "https://github.com/roycald245/homebrew-yogev/releases/download/0.0.1.2/yogev-0.0.1.2.tar.gz"
sha256 "573cea09cee761e04ccd73a3f757b5d37af8353065c26a36bb0db1662ecea699"
license "Apache-2.0"
depends_on "go" => :build
def install
bin.install "yogev"
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test yogev`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end