c14e0a5e76
Closes Homebrew/homebrew#49513. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
473 B
Ruby
17 lines
473 B
Ruby
class DiffSoFancy < Formula
|
|
desc "Good-lookin' diffs with diff-highlight and more"
|
|
homepage "https://github.com/so-fancy/diff-so-fancy"
|
|
url "https://github.com/so-fancy/diff-so-fancy/archive/v0.5.0.tar.gz"
|
|
sha256 "cb04eeb1158234b406fecb21003bc05f9dedc8cd458bc56c6d26d9d19ca5261f"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "third_party/diff-highlight/diff-highlight"
|
|
bin.install "diff-so-fancy"
|
|
end
|
|
|
|
test do
|
|
system bin/"diff-so-fancy"
|
|
end
|
|
end
|