964b083f84
A new autoenv release! (minor) Closes #6054. Signed-off-by: Andrew Janke <andrew@apjanke.net>
19 lines
558 B
Ruby
19 lines
558 B
Ruby
class Autoenv < Formula
|
|
desc "Per-project, per-directory shell environments"
|
|
homepage "https://github.com/kennethreitz/autoenv"
|
|
url "https://github.com/kennethreitz/autoenv/archive/v0.2.1.tar.gz"
|
|
sha256 "d10ee4d916a11a664453e60864294fec221c353f8ad798aa0aa6a2d2c5d5b318"
|
|
head "https://github.com/kennethreitz/autoenv.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
prefix.install "activate.sh"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To finish the installation, source activate.sh in your shell:
|
|
source #{opt_prefix}/activate.sh
|
|
EOS
|
|
end
|
|
end
|