aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/js-test-driver.rb
blob: 7cec5660ac08731fdac65d6fdfa7d328af9efdb9 (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-1.3.5.jar'
    bin.write_jar_script libexec/'JsTestDriver-1.3.5.jar', 'js-test-driver'
  end
end