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