blob: e4e813b32c00cf2e3e9b5727410e9e09339a4890 (
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.3.0.tar.gz'
sha1 'a40959400a288c9527e131409f6eb6bf3183c9ae'
head 'https://github.com/sstephenson/bats.git'
def install
system './install.sh', prefix
end
end
|