blob: a0a84059a0818203afac5859a583dc50c5ccf3e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
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
  |