aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chromedriver.rb
blob: af6419df0def05e57cec52b835279c3725267d98 (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.4/chromedriver_mac32.zip'
  sha1 'b78a808c083fe17215069c9d0ff0e6b6455d8964'
  version '2.4'

  def install
    bin.install 'chromedriver'
  end
end