e1c2ed733a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
11 lines
228 B
Ruby
11 lines
228 B
Ruby
require 'formula'
|
|
|
|
class RedisTools <Formula
|
|
head 'git://github.com/antirez/redis-tools.git'
|
|
homepage 'http://code.google.com/p/redis/'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install ["redis-load", "redis-stat"]
|
|
end
|
|
end
|