homebrew-core/Formula/q.rb
Harel Ben-Attia e0f0793c16 q 1.4.0
Closes Homebrew/homebrew#30152.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-06-14 14:07:55 -05:00

20 lines
427 B
Ruby

require 'formula'
class Q < Formula
homepage 'https://github.com/harelba/q'
url 'https://github.com/harelba/q/archive/1.4.0.tar.gz'
sha1 'e8efe87aa691a7ab57e95f15cf4b2babfbabe945'
def install
bin.install 'bin/q'
end
test do
IO.popen("#{bin}/q 'select sum(c1) from -'", "w+") do |pipe|
1.upto(100) { |i| pipe.puts i }
pipe.close_write
assert_equal "5050\n", pipe.read
end
end
end