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