blob: 521df85f28a261300c087583f1c866f23bfb5bce (
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_14.0.836.0.zip'
homepage 'http://code.google.com/p/selenium/wiki/ChromeDriver'
sha1 '2b292bb47e26286fc714c3b9a74904800a6acc97'
def install
bin.install 'chromedriver'
end
end
|