Commit ba7b5b54 by John Jarvis

setting HOME to rbenv_dir for bundle install to work

parent 64c2b7a9
......@@ -3,9 +3,11 @@
rbenv_version: 'v0.4.0'
rbenv_bundler_version: '1.3.2'
rbenv_root: "{{ rbenv_dir }}/.rbenv"
rbenv_gem_root: "{{ rbenv_root }}/.gem"
rbenv_gem_bin: "{{ rbenv_gem_root }}/bin"
rbenv_bin: "{{ rbenv_dir }}/.rbenv/bin"
rbenv_shims: "{{ rbenv_root }}/shims"
rbenv_path: "{{ rbenv_bin }}:{{ rbenv_shims }}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
rbenv_path: "{{ rbenv_bin }}:{{ rbenv_shims }}:{{ rbenv_gem_bin }}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
rbenv_debian_pkgs:
- build-essential
- git
......@@ -18,4 +20,7 @@ rbenv_debian_pkgs:
- zlib1g-dev
rbenv_environment:
RBENV_ROOT: $rbenv_root
GEM_ROOT: $rbenv_gem_root
GEM_HOME: $rbenv_gem_root
PATH: $rbenv_path
HOME: $rbenv_dir
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment