-
-
Notifications
You must be signed in to change notification settings - Fork 139
Open
Description
---
dependencies:
- { role: ubuntu-common }
- { role: rvm.ruby,
tags: ruby,
rvm1_rubies: ['ruby-2.3-latest'],
rvm1_ruby_install_flags: '-C --with-jemalloc', # Use jemalloc
rvm1_install_flags: '--auto-dotfiles', # Remove --user-install from defaults
rvm1_install_path: /usr/local/rvm, # Set to system location
rvm1_user: root # Need root account to access system location
}
fails, but the following does not.
---
dependencies:
- { role: ubuntu-common }
- { role: rvm.ruby,
tags: ruby,
rvm1_rubies: ['ruby-2.3.8'],
rvm1_ruby_install_flags: '-C --with-jemalloc', # Use jemalloc
rvm1_install_flags: '--auto-dotfiles', # Remove --user-install from defaults
rvm1_install_path: /usr/local/rvm, # Set to system location
rvm1_user: root # Need root account to access system location
}
The problem seems to be that the actual version getting installed is being shown by RVM as 2.3.8-latest
, and when the bundler install script greps through the installed rubies, its search for 2.3-latest
gets no results.
Metadata
Metadata
Assignees
Labels
No labels