b16c1b8925
Closes Homebrew/homebrew#25421. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
12 lines
300 B
Ruby
12 lines
300 B
Ruby
require 'formula'
|
|
|
|
class Chromedriver < Formula
|
|
homepage 'http://code.google.com/p/chromedriver/'
|
|
url 'http://chromedriver.storage.googleapis.com/2.8/chromedriver_mac32.zip'
|
|
sha1 'b44d4666d00531f9edc5f1e89534a789fb4ec162'
|
|
version '2.8'
|
|
|
|
def install
|
|
bin.install 'chromedriver'
|
|
end
|
|
end
|