diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rbenv-use.rb | 14 | ||||
| -rw-r--r-- | Library/Formula/rbenv-whatis.rb | 13 |
2 files changed, 27 insertions, 0 deletions
diff --git a/Library/Formula/rbenv-use.rb b/Library/Formula/rbenv-use.rb new file mode 100644 index 000000000..867423b84 --- /dev/null +++ b/Library/Formula/rbenv-use.rb @@ -0,0 +1,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 diff --git a/Library/Formula/rbenv-whatis.rb b/Library/Formula/rbenv-whatis.rb new file mode 100644 index 000000000..0b8a802ef --- /dev/null +++ b/Library/Formula/rbenv-whatis.rb @@ -0,0 +1,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 |
