60463dd1e0
This change upgrades the rbenv-aliases formula to version 1.0.1. In addition, it changes the pointers to the official source repository (tpope/rbenv-aliases) now that author has started tagging releases. Closes Homebrew/homebrew#21607. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
347 B
Ruby
15 lines
347 B
Ruby
require 'formula'
|
|
|
|
class RbenvAliases < Formula
|
|
homepage 'https://github.com/tpope/rbenv-aliases'
|
|
url 'https://github.com/tpope/rbenv-aliases/archive/v1.0.1.tar.gz'
|
|
sha1 '7fcfe5ea3011c5f9e00ad41d85bebc2d19869b61'
|
|
|
|
head 'https://github.com/tpope/rbenv-aliases.git'
|
|
|
|
depends_on 'rbenv'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
end
|