homebrew-core/Formula/tailor.rb
ilovezfs 61f2fcaca6 tailor 0.10.1
Closes #4218.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-08-24 15:25:32 -07:00

21 lines
587 B
Ruby

class Tailor < Formula
desc "Cross-platform static analyzer and linter for Swift"
homepage "https://tailor.sh"
url "https://github.com/sleekbyte/tailor/releases/download/v0.10.1/tailor-0.10.1.tar"
sha256 "3960aca4218a773170fb9ac51c7b17b816b2a967c01d6277d45998ebffc961b4"
bottle :unneeded
depends_on :java => "1.8+"
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/tailor"
man1.install libexec/"tailor.1"
end
test do
(testpath/"Test.swift").write "import Foundation\n"
system "#{bin}/tailor", testpath/"Test.swift"
end
end