blob: c10eba28fd64f2126be19af22a9e4244d124bb4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Chromedriver < Formula
url 'http://chromium.googlecode.com/files/chromedriver_mac_17.0.963.0.zip'
homepage 'http://code.google.com/p/selenium/wiki/ChromeDriver'
sha1 'da40247dc3da410e8ec713b7c7bc46193c3fb231'
def install
bin.install 'chromedriver'
end
end
|