Pass language_version to the install method for each language.

This commit is contained in:
Anthony Sottile 2014-06-02 06:57:07 -07:00
parent 4f2f1731ea
commit a7ab9b2a28
7 changed files with 12 additions and 9 deletions

View file

@ -56,7 +56,7 @@ def _install_rbenv(repo_cmd_runner):
)
def install_environment(repo_cmd_runner):
def install_environment(repo_cmd_runner, version='default'):
with clean_path_on_failure(repo_cmd_runner.path('rbenv')):
_install_rbenv(repo_cmd_runner)
with in_env(repo_cmd_runner) as ruby_env: