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