24 lines
748 B
Ruby
24 lines
748 B
Ruby
class Wires < Formula
|
|
desc "WebDriver <-> Marionette proxy"
|
|
homepage "https://github.com/jgraham/wires"
|
|
url "https://github.com/jgraham/wires/archive/v0.6.2.tar.gz"
|
|
sha256 "bbc73c1014dd218b424a82da6e656f638aa672fd0990229eff8c1a005166db07"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "b7408f7a32326df3200fc88ace88a3d19a285cbba1a79631947b150422b43cef" => :el_capitan
|
|
sha256 "4037fdfaaa442386412bfcb66ed40ab6527b584d2b76e41d5399d018d03b1eba" => :yosemite
|
|
sha256 "f265f4acd2265a1be067ab453d47aada5db299c948843a8d32e74754e45374d2" => :mavericks
|
|
end
|
|
|
|
depends_on "rust" => :build
|
|
|
|
def install
|
|
system "cargo", "build"
|
|
bin.install "target/debug/wires"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/wires", "--help"
|
|
end
|
|
end
|