到目前为止,我只知道如何执行命令
rvm 2.0.0
幸运的是谷歌告诉我
当前的稳定版本是 2.0.0-p247。
但是我不应该能够使用 rvm 为我做这一步吗?我不知道如何告诉 rvm 安装最新版本的 ruby,而不手动指定它。
足以:
rvm get stable
rvm use ruby --install --default
它将更新 rvm,检查最新的 ruby - 如果缺少,请安装它 - 并设置为默认值
我不知道让 rvm 自动安装最新版本的方法,但这里有三个仅使用 rvm 的简单命令:
rvm reload
rvm list known # This will show all the available versions, including the latest
rvm install <latest_version> # Replace <latest_version> with the latest shown by the last command
rvm install ruby-head
应该安装最后一个已知版本。