2011-12-02 11:09:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Spark < Formula
|
2013-01-11 00:40:55 +00:00
|
|
|
url 'https://github.com/holman/spark/zipball/v1.0.1'
|
|
|
|
homepage 'http://zachholman.com/spark/'
|
|
|
|
sha1 'c44be4dee3b375ce2a33d096ff41ed3212eaa7ce'
|
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
|