blob: 3af898abbe0ffbc47c5195ebc1e0dff38b8d40a8 (
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/v1.0.0.tar.gz'
  sha1 '39beb889704bc51213665fd994417ab0668c5f83'
  depends_on 'rbenv'
  depends_on 'rbenv-whatis'
  def install
    prefix.install Dir['*']
  end
end
  |