11 lines
238 B
Ruby
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
|