Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在采取行动之前,我需要检查 RVM 版本。这似乎是一个简单的问题,但我很难在一个普通的旧 Ruby 应用程序中找到与 RVM 相关的变量列表。
RVM 版本信息存储在 shell 的环境变量中。您可以像这样从 Ruby 访问 rvm_version:
puts "RVM version is #{ENV['rvm_version']}"