blob: 9e7f48145a3dcf554862de3bf39ea7f12ff224b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class RedisTools < Formula
head 'git://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
|