rbenv-aliases 1.0.0

This is a simple formula in the spirit of the rbenv-vars formula, that
installs the rbenv-aliases rbenv plugin.

Closes Homebrew/homebrew#20330.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ben Hale 2013-06-07 16:57:42 +01:00 committed by Adam Vandenberg
parent 688cec69f5
commit a47193d693

15
Formula/rbenv-aliases.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class RbenvAliases < Formula
homepage 'https://github.com/nebhale/rbenv-aliases'
url 'https://github.com/nebhale/rbenv-aliases/archive/v1.0.0.tar.gz'
sha1 'c0a4b1a4f0b1931b39e3cc3969e5d37ad4dec1f9'
head 'https://github.com/nebhale/rbenv-aliases.git'
depends_on 'rbenv'
def install
prefix.install Dir['*']
end
end