74bdcf8044
Closes #38364. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
17 lines
462 B
Ruby
17 lines
462 B
Ruby
class Lorem < Formula
|
|
desc "Python generator for the console"
|
|
homepage "https://github.com/per9000/lorem"
|
|
url "https://github.com/per9000/lorem/archive/v0.8.0.tar.gz"
|
|
sha256 "3eec439d616a044e61a6733730b1fc009972466f869dae358991f95abd57e8b3"
|
|
head "https://github.com/per9000/lorem.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "lorem"
|
|
end
|
|
|
|
test do
|
|
assert_equal "lorem ipsum", shell_output("#{bin}/lorem -n 2").strip.downcase
|
|
end
|
|
end
|