homebrew-core/Formula/autoenv.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

18 lines
539 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.1.0.tar.gz"
sha256 "5e0fb3af642ee54b050b9d04f7f32fef1c6db14a6a3b6c6d05796b5681aeec90"
head "https://github.com/kennethreitz/autoenv.git"
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