2011-12-02 11:09:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Spark < Formula
|
2013-01-11 00:40:55 +00:00
|
|
|
homepage 'http://zachholman.com/spark/'
|
2013-03-16 20:03:52 +00:00
|
|
|
url 'https://github.com/holman/spark/archive/v1.0.1.tar.gz'
|
|
|
|
sha1 '11c6a0c5e52720a1282c5da5019432c33dcf9403'
|
2011-12-02 11:09:37 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "spark"
|
|
|
|
end
|
2013-01-11 00:40:55 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/spark"
|
|
|
|
end
|
2011-12-02 11:09:37 +00:00
|
|
|
end
|