aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/selecta.rb
blob: eb3906e4749e117d3c69c93f302ae244db4e3d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Selecta < Formula
  homepage "https://github.com/garybernhardt/selecta"
  url "https://github.com/garybernhardt/selecta/archive/v0.0.6.tar.gz"
  sha256 "c5e0fdab53b3c4942e46c1a2c5a38158f21eb0520c6391f77d6d0a7d2a023318"

  depends_on :ruby => "1.9"

  def install
    bin.install "selecta"
  end

  test do
    system "#{bin}/selecta", "--version"
  end
end