homebrew-core/Formula/spark.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

15 lines
287 B
Ruby

require 'formula'
class Spark < Formula
homepage 'http://zachholman.com/spark/'
url 'https://github.com/holman/spark/archive/v1.0.1.tar.gz'
sha1 '11c6a0c5e52720a1282c5da5019432c33dcf9403'
def install
bin.install "spark"
end
test do
system "#{bin}/spark"
end
end