aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chromedriver.rb
blob: 39df9d7a07998fd09a8d074991fe1b3c28836aa1 (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.10/chromedriver_mac32.zip'
  sha256 'fc412529600693430a17434652e1b765b2bd61f20a829b626d752a7b7d237c56'
  version '2.10'

  def install
    bin.install 'chromedriver'
  end
end