homebrew-core/Formula/redpen.rb

26 lines
897 B
Ruby
Raw Normal View History

class Redpen < Formula
desc "Proofreading tool to help writers of technical documentation"
homepage "http://redpen.cc/"
url "https://github.com/recruit-tech/redpen/releases/download/v1.4.1/redpen-1.4.1.tar.gz"
sha256 "431fd0771facc77c353309d981c774c0099b4529f51ca414edb399d936a96f08"
2015-10-23 12:30:50 +00:00
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