homebrew-core/Formula/bats.rb
Greg Karékinian b43738add2 bats 0.4.0
Update bats to 0.4.0

https://github.com/sstephenson/bats/releases/tag/v0.4.0

Closes Homebrew/homebrew#31603.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-08-14 22:52:50 +01:00

12 lines
313 B
Ruby

require 'formula'
class Bats < Formula
homepage 'https://github.com/sstephenson/bats'
url 'https://github.com/sstephenson/bats/archive/v0.4.0.tar.gz'
sha1 'cb8a5f4c844a5f052f915036130def31140fce94'
head 'https://github.com/sstephenson/bats.git'
def install
system './install.sh', prefix
end
end