18e2f0bd99
Closes Homebrew/homebrew#26125. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
353 B
Ruby
14 lines
353 B
Ruby
require 'formula'
|
|
|
|
class RbenvBundler < Formula
|
|
homepage 'https://github.com/carsomyr/rbenv-bundler'
|
|
url 'https://github.com/carsomyr/rbenv-bundler/archive/0.96.tar.gz'
|
|
sha1 '02339c604c840f24b66523c9faad6ed82500eda1'
|
|
head 'https://github.com/carsomyr/rbenv-bundler.git'
|
|
|
|
depends_on 'rbenv'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
end
|