Default install manifests for anyenv.
For example, rbenv
:
install_env https://github.com/rbenv/rbenv.git
install_plugin ruby-build https://github.com/rbenv/ruby-build.git
It will create these directories after anyenv install rbenv
:
/Users/riywo/.anyenv/envs
└── rbenv
└── plugins
└── ruby-build
Install manifest is just a shell script. You have to add at least one line using install_env
function. Also, you can install its plugins by using install_plugin
function.
Install **env into ANYENV_ENVS_ROOT
. It will create a directory using the same name of the manifest file.
install_env git_url [git_ref]
Install a plugin under plugins
directory inside the env directory which is created by install_env
. It will create a directory named by specified destination
.
install_plugin destination git_url [git_ref]