14 lines
306 B
Ruby
14 lines
306 B
Ruby
require 'formula'
|
|
|
|
class RbenvUse < Formula
|
|
homepage 'https://github.com/rkh/rbenv-use'
|
|
url 'https://github.com/rkh/rbenv-use/archive/v1.0.0.tar.gz'
|
|
sha1 '39beb889704bc51213665fd994417ab0668c5f83'
|
|
|
|
depends_on 'rbenv'
|
|
depends_on 'rbenv-whatis'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
end
|