aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chromedriver.rb
blob: c6a01e303b264892ba2d748089ea9a72e1d68658 (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_16.0.902.0.zip'
  homepage 'http://code.google.com/p/selenium/wiki/ChromeDriver'
  sha1 '2d0d786b0b1bf08472da61301a99cd592a3fa88b'

  def install
    bin.install 'chromedriver'
  end
end