aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/js-test-driver.rb
blob: cffeaf38d4d7c44f7239d99bd8212455370c143b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class JsTestDriver < Formula
  homepage 'http://code.google.com/p/js-test-driver/'
  url 'https://js-test-driver.googlecode.com/files/JsTestDriver-1.3.5.jar'
  sha1 '7a29ace71b9d5a82f5f0abe0ea22b73d7fd07826'

  def install
    libexec.install "JsTestDriver-#{version}.jar"
    bin.write_jar_script libexec/"JsTestDriver-#{version}.jar", "js-test-driver"
  end
end