diff options
| author | Parker Moore | 2013-05-28 13:27:32 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-31 13:35:46 -0700 |
| commit | 98b250e767c0e37250b469a4ecd00427ed6cb14f (patch) | |
| tree | 94ffcb5ceb1fe3b397964b43b250a510907bb65b /Library/Formula | |
| parent | 759abaa6f7955c81ff18d8156aad17438587fd77 (diff) | |
| download | homebrew-98b250e767c0e37250b469a4ecd00427ed6cb14f.tar.bz2 | |
ghi 0.9.0.201304025
Closes #20111.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ghi.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ghi.rb b/Library/Formula/ghi.rb new file mode 100644 index 000000000..d5a4cea16 --- /dev/null +++ b/Library/Formula/ghi.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Ghi < Formula + homepage 'https://github.com/stephencelis/ghi' + url 'https://github.com/stephencelis/ghi/archive/0.9.0.201304025.zip' + sha1 '13774729cdf6d140e2cd48f661fbcc5b00bfdd33' + + def install + bin.install "ghi" + man1.install "man/ghi.1" + end + + test do + system "ghi --version" + end +end |
