aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/redis-tools.rb
blob: 278d00bc2aa30e54247fccef45865388c5aebdd0 (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 'http://code.google.com/p/redis/'

  def install
    system "make"
    bin.install ["redis-load", "redis-stat"]
  end
end