blob: 4de8a52f77f4f9a1c31212d3d4031384fab0946d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Denominator < ScriptFileFormula
# This is a shell script wrapping a java jar; download as single file using nounzip
homepage 'https://github.com/Netflix/denominator/tree/master/denominator-cli'
url 'http://dl.bintray.com/content/netflixoss/denominator/denominator-cli/release/3.4.0/denominator?direct',
:using => :nounzip
version '3.4.0'
sha1 '01e81f21f232c4256ec766206e9056e40ca0d7ed'
test do
system "#{bin}/denominator", "help"
end
end
|