diff options
| author | Jannis Leidel | 2009-10-29 01:04:09 +0100 | 
|---|---|---|
| committer | Max Howell | 2009-11-04 16:27:36 +0000 | 
| commit | 97ecce7df6870bf935a3ff7dae0c4e941b7ad9fe (patch) | |
| tree | ac886f1da5f8379f2c6d89c7f8bc4ddc03fae4d4 | |
| parent | 076c559e2d91d5de7647a68b0435d054e04b2790 (diff) | |
| download | homebrew-97ecce7df6870bf935a3ff7dae0c4e941b7ad9fe.tar.bz2 | |
memcache-top formula
perl command-line memcached stat reporter, top-like output
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/memcache-top.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/memcache-top.rb b/Library/Formula/memcache-top.rb new file mode 100644 index 000000000..90bfac45c --- /dev/null +++ b/Library/Formula/memcache-top.rb @@ -0,0 +1,13 @@ +require 'formula' + +class MemcacheTop <Formula +  url 'http://memcache-top.googlecode.com/files/memcache-top-v0.6' +  homepage 'http://code.google.com/p/memcache-top/' +  md5 '5eb035237cb482772f898597eda26106' +  version '0.6' + +  def install +    FileUtils.mv 'memcache-top-v0.6', 'memcache-top' +    bin.install 'memcache-top' +  end +end | 
