blob: 0b8a802efe2edfcd2252dd2be1d277f3adf31882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class RbenvWhatis < Formula
homepage 'https://github.com/rkh/rbenv-whatis'
url 'https://github.com/rkh/rbenv-whatis/archive/9bf9f2.tar.gz'
sha1 'a78eb1ce44974d7080087f96d8b17f1334b9e03c'
depends_on 'rbenv'
def install
prefix.install Dir['*']
end
end
|