4af6dda478
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
10 lines
206 B
Ruby
10 lines
206 B
Ruby
require 'formula'
|
|
|
|
class GerritTools <Formula
|
|
head 'git://github.com/indirect/gerrit-tools.git'
|
|
homepage 'http://github.com/indirect/gerrit-tools'
|
|
|
|
def install
|
|
bin.install(Dir["bin/*"])
|
|
end
|
|
end
|