2015-11-01 20:10:22 +00:00
|
|
|
class Tailor < Formula
|
|
|
|
desc "Static analyzer for Swift"
|
2015-11-08 20:11:15 +00:00
|
|
|
homepage "https://tailor.sh"
|
2015-11-24 00:02:07 +00:00
|
|
|
url "https://github.com/sleekbyte/tailor/releases/download/v0.3.0/tailor-0.3.0.tar"
|
|
|
|
sha256 "ecb9aeb9f7f7a6fd602a836c7caab21b655391ec6115eda41b763c4dfff3936e"
|
2015-11-01 20:10:22 +00:00
|
|
|
|
|
|
|
bottle :unneeded
|
|
|
|
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
bin.install_symlink libexec/"bin/tailor"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"Test.swift").write "import Foundation\n"
|
|
|
|
system "#{bin}/tailor", testpath/"Test.swift"
|
|
|
|
end
|
|
|
|
end
|