homebrew-core/Formula/detekt.rb

26 lines
750 B
Ruby
Raw Normal View History

2019-11-20 14:29:36 +00:00
class Detekt < Formula
desc "Static code analysis for Kotlin"
homepage "https://github.com/arturbosch/detekt"
2019-12-17 22:37:31 +00:00
url "https://jcenter.bintray.com/io/gitlab/arturbosch/detekt/detekt-cli/1.2.1/detekt-cli-1.2.1-all.jar"
sha256 "40de5df866fa0fd12acebb63af75da50d1f4dd3e5c5576f08a9f330b1ba8beee"
2019-11-20 14:29:36 +00:00
2019-12-17 22:37:31 +00:00
bottle :unneeded
2019-12-10 03:57:46 +00:00
2019-11-20 14:29:36 +00:00
depends_on :java => "1.8+"
def install
libexec.install "detekt-cli-#{version}-all.jar"
bin.write_jar_script libexec/"detekt-cli-#{version}-all.jar", "detekt"
2019-11-20 14:29:36 +00:00
end
test do
(testpath/"input.kt").write <<~EOS
fun main() {
}
EOS
system bin/"detekt", "--input", "input.kt", "--report", "txt:output.txt"
assert_equal "EmptyFunctionBlock", shell_output("cat output.txt").slice(/\w+/)
2019-11-20 14:29:36 +00:00
end
end