blob: 73237518e5be967bab5bc3dad4033f754a17617f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Bats < Formula
homepage 'https://github.com/sstephenson/bats'
url 'https://github.com/sstephenson/bats/archive/v0.2.0.tar.gz'
sha1 'c2e67181e2bd6f89f9e40d4cad43c0fe2c1df19a'
head 'https://github.com/sstephenson/bats.git'
def install
system './install.sh', prefix
end
end
|