aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/redis-tools.rb
blob: dc6a899f73da83e900e3ec2f6fe597639e5370b9 (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