homebrew-core/Formula/redpen.rb
takahi-i 5ed04e8b50 redpen 1.5.3
Closes Homebrew/homebrew#50313.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2016-03-22 19:41:40 +08:00

25 lines
900 B
Ruby

class Redpen < Formula
desc "Proofreading tool to help writers of technical documentation"
homepage "http://redpen.cc/"
url "https://github.com/redpen-cc/redpen/releases/download/redpen-1.5.3/redpen-1.5.3.tar.gz"
sha256 "e44c4fb8f5e669c895104c865d3a5ddf6134908007f8ee4839aa7b872e85d26e"
bottle :unneeded
depends_on :java => "1.8"
def install
# Don't need Windows files.
rm_f Dir["bin/*.bat"]
libexec.install %w[conf lib sample-doc js]
prefix.install "bin"
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8"))
end
test do
path = "#{libexec}/sample-doc/en/sampledoc-en.txt"
output = "#{bin}/redpen -l 20 -c #{libexec}/conf/redpen-conf-en.xml #{path}"
assert_match /^sampledoc-en.txt:1: ValidationError[SymbolWithSpace]*/, shell_output(output).split("\n").select { |line| line.start_with?("sampledoc-en.txt") }[0]
end
end