diff options
| author | Xu Cheng | 2014-04-21 19:33:21 +0800 |
|---|---|---|
| committer | Jack Nagel | 2014-04-22 10:01:21 -0500 |
| commit | d4bddc4b455f31dd46facc0672f346984b1017a6 (patch) | |
| tree | 25f7604581e472aae6ce3791a9815d108e94a688 | |
| parent | 3f1b12ca00813ce6cfdf0e9623215705f8ebe71e (diff) | |
| download | homebrew-d4bddc4b455f31dd46facc0672f346984b1017a6.tar.bz2 | |
pyenv-virtualenv v20140421
Closes #28568.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/pyenv-virtualenv.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/pyenv-virtualenv.rb b/Library/Formula/pyenv-virtualenv.rb index b4bcf299f..e8aa787b2 100644 --- a/Library/Formula/pyenv-virtualenv.rb +++ b/Library/Formula/pyenv-virtualenv.rb @@ -1,16 +1,16 @@ -require 'formula' +require "formula" class PyenvVirtualenv < Formula - homepage 'https://github.com/yyuu/pyenv-virtualenv' - url 'https://github.com/yyuu/pyenv-virtualenv/archive/v20140123.tar.gz' - sha1 '157571744ba1a16c44a83e8a250b3bf47ac53ab3' + homepage "https://github.com/yyuu/pyenv-virtualenv" + url "https://github.com/yyuu/pyenv-virtualenv/archive/v20140421.tar.gz" + sha1 "65a82ec70a1de8995d4238fd23becd152e25bdcf" - head 'https://github.com/yyuu/pyenv-virtualenv.git' + head "https://github.com/yyuu/pyenv-virtualenv.git" - depends_on 'pyenv' + depends_on "pyenv" def install - ENV['PREFIX'] = prefix + ENV["PREFIX"] = prefix system "./install.sh" end end |
