blob: b771c571ec56e244af8a64eb97a2b6808dd0f5b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
require 'formula'
class Chromedriver < Formula
  homepage 'http://code.google.com/p/chromedriver/'
  url 'http://chromedriver.googlecode.com/files/chromedriver_mac_19.0.1068.0.zip'
  sha1 '4a7448555dc61f900c5144d26afbfe99749433de'
  def install
    bin.install 'chromedriver'
  end
end
  |