Skip to content

excid3/asdf-vars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

asdf-vars

An asdf extension that safely sets global and per-project environment variables, based upon rbenv

This is basically a port of the rbenv-vars plugin.

Install

Make sure you already have asdf installed before following these steps.

asdf plugin add vars https://github.com/excid3/asdf-vars

Add the following to ~/.asdf/lib/commands/command-exec.bash before it executes the shim.

eval "$($ASDF_DIR/bin/asdf vars)"
with_shim_executable "$shim_name" exec_shim || exit $?

Usage

Define environment variables in an .asdf-vars file in your project, one variable per line, in the format VAR=value. For example:

RUBY_GC_MALLOC_LIMIT=50000000
RUBY_HEAP_MIN_SLOTS=15000
RUBY_FREE_MIN=4096

You can perform variable substitution with the traditional $ syntax. For example, to append to GEM_PATH:

GEM_PATH=$GEM_PATH:/u/shared/gems

Spaces are allowed in values; quoting is not necessary. Expansion and command substitution are not allowed. Lines beginning with # or any lines not in the format VAR=value will be ignored.

Variables specified in the ~/.asdf/vars file will be set first. Then variables specified in .asdf-vars files in any parent directories of the current directory will be set. Variables from the .asdf-vars file in the current directory are set last.

Author

License

© 2018-2020 Chris Oliver. Released under the MIT license. See LICENSE for details.

About

An asdf extension that safely sets global and per-project environment variables, based upon rbenv

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages