homebrew-core/Formula/distribution.rb

20 lines
613 B
Ruby

class Distribution < Formula
desc "Create ASCII graphical histograms in the terminal"
homepage "https://github.com/philovivero/distribution"
url "https://github.com/philovivero/distribution/archive/1.3.tar.gz"
sha256 "d7f2c9beeee15986d24d8068eb132c0a63c0bd9ace932e724cb38c1e6e54f95d"
head "https://github.com/philovivero/distribution.git"
bottle :unneeded
def install
bin.install "distribution.py" => "distribution"
doc.install "distributionrc", "screenshot.png"
end
test do
(testpath/"test").write "a\nb\na\n"
`#{bin}/distribution <test 2>/dev/null`.include? "a|2"
end
end