1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
require 'formula' class Spark < Formula url 'https://github.com/holman/spark/zipball/v1.0.1' homepage 'http://zachholman.com/spark/' sha1 'c44be4dee3b375ce2a33d096ff41ed3212eaa7ce' def install bin.install "spark" end def test system "#{bin}/spark" end end