homebrew-core/Formula/redis-tools.rb
2011-05-26 22:02:55 -07:00

11 lines
238 B
Ruby

require 'formula'
class RedisTools < Formula
head 'https://github.com/antirez/redis-tools.git'
homepage 'https://github.com/antirez/redis-tools'
def install
system "make"
bin.install ["redis-load", "redis-stat"]
end
end