mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 09:08:37 +01:00
14 lines
433 B
Ruby
14 lines
433 B
Ruby
class Watchexec < Formula
|
|
desc "Execute commands when watched files change"
|
|
homepage "https://github.com/mattgreen/watchexec"
|
|
url "https://github.com/mattgreen/watchexec/releases/download/1.0.0/watchexec-1.0.0-x86_64-apple-darwin.tar.gz"
|
|
sha256 "151d8f8075dfb88a69b1d5d6f9b43c849aa1e099a3357fab494b1f43092ed59c"
|
|
|
|
def install
|
|
bin.install "watchexec"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/watchexec", "--version"
|
|
end
|
|
end
|