homebrew-core/Formula/titlecase.rb
Dominyk Tiller 26306583d2
titlecase 1.004
Closes #31362.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2018-08-22 06:52:18 +01:00

18 lines
505 B
Ruby

class Titlecase < Formula
desc "Script to convert text to title case"
homepage "http://plasmasturm.org/code/titlecase/"
url "https://github.com/ap/titlecase/archive/v1.004.tar.gz"
sha256 "fbaafdb66ab4ba26f1f03fa292771d146c050fff0a3a640e11314ace322c2d92"
head "https://github.com/ap/titlecase.git"
bottle :unneeded
def install
bin.install "titlecase"
end
test do
(testpath/"test").write "homebrew"
assert_equal "Homebrew\n", shell_output("#{bin}/titlecase test")
end
end