aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spark.rb
blob: bcc4365e72a81e4305eaa724dd9e7fa2955a85df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Spark < Formula
  homepage 'http://zachholman.com/spark/'
  url 'https://github.com/holman/spark/zipball/v1.0.1'
  sha1 'c44be4dee3b375ce2a33d096ff41ed3212eaa7ce'

  def install
    bin.install "spark"
  end

  def test
    system "#{bin}/spark"
  end
end