aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chromedriver.rb
blob: 62d821ffb7034d84a74f9f15a867ec4b13c1f280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Chromedriver < Formula
  homepage 'https://sites.google.com/a/chromium.org/chromedriver/'
  url 'http://chromedriver.storage.googleapis.com/2.12/chromedriver_mac32.zip'
  sha256 'f93464dd4e57f7d59601e9ab92ad0770493f9ea00b69ddba8da3886c35852d4b'
  version '2.12'

  def install
    bin.install 'chromedriver'
  end
end