diff options
| author | Dean Morin | 2014-12-15 08:13:34 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2014-12-15 08:13:50 +0000 | 
| commit | 803fe49208a72463a217726af63698d0c0d31cc1 (patch) | |
| tree | 5cf0bc87703e226a70a605cc223036bc63f7b638 | |
| parent | bb24201ebc1a3b3cebfccbdab2f9f69f0666c198 (diff) | |
| download | homebrew-803fe49208a72463a217726af63698d0c0d31cc1.tar.bz2 | |
rbenv-bundle-exec 1.0.0
Closes #32408.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/rbenv-bundle-exec.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/Library/Formula/rbenv-bundle-exec.rb b/Library/Formula/rbenv-bundle-exec.rb new file mode 100644 index 000000000..866bf9b7c --- /dev/null +++ b/Library/Formula/rbenv-bundle-exec.rb @@ -0,0 +1,15 @@ +require "formula" + +class RbenvBundleExec < Formula +  homepage "https://github.com/maljub01/rbenv-bundle-exec" +  url "https://github.com/maljub01/rbenv-bundle-exec/archive/v1.0.0.tar.gz" +  sha1 "2094ce0ac8f53b500f35a1a1b47a654a42611a35" + +  head "https://github.com/maljub01/rbenv-bundle-exec.git" + +  depends_on "rbenv" + +  def install +    prefix.install Dir["*"] +  end +end | 
