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

class Chromedriver < Formula
  homepage 'http://code.google.com/p/chromedriver/'
  url 'http://chromedriver.storage.googleapis.com/2.11/chromedriver_mac32.zip'
  sha256 '5abe6c42cef691ae594fd385dad8c22ff73a8a91d54854dbb6a5ceed670ab570'
  version '2.11'

  def install
    bin.install 'chromedriver'
  end
end