如何在同一台机器上使用多个版本的导轨
我在我的机器上安装了 Rails 3.0.10 和 2.3.5。我想在它们之间切换,但我无法使用 2.3.5。当我运行命令时,系统仅识别 3.0.10。
I have installed rails 3.0.10 and 2.3.5 in my machine. I wanna shuffle between them but I am unable to use 2.3.5. When I run a command, the system recognizes only 3.0.10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
rvm 可让您轻松管理 Ruby 的多个安装,每个安装都有自己的 gemset 列表。
编辑:根据您关于研究宝石集的评论,我将指出 rvm 最酷的功能之一。完成 Gemset 设置后,在 Rails 根目录中创建一个
.rvmrc
文件。添加以下内容:rvm 1.9.2@foo
其中“1.9.2”是您正在使用的 Ruby,“foo”是 gemset 名称。当您 cd 进入该目录时,rvm 将自动开始使用此集。
rvm lets you easily manage multiple installs of Ruby, each with their own list of gemsets.
Edit: Based on your comment about looking into gemsets, I'll point out one of the single coolest features with rvm. Once you get your gemset setup, create a
.rvmrc
file in your Rails root directory. Add the following to it:rvm 1.9.2@foo
Where "1.9.2" is whatever Ruby you're using and "foo" is the gemset name. rvm will automatically start using this set when you cd in to that directory.
一定要使用rvm,在每个项目的根目录中创建一个.rvmrc 文件。
对于 Rails 3 的内容,它应该包含一行:
rvm 1.9.2@projectName
将 projectName 替换为您的项目的标识符。然后使用 rvm gemset create projectName
每次进入该目录时,您都会将该版本的 ruby 与该特定的 gemset 一起使用,这样您就不会混淆版本或 ruby 或 gem!
Definitely use rvm, create a .rvmrc file in the root directory of each of your projects.
For rails 3 stuff, it should contain a single line:
rvm 1.9.2@projectName
Replacing projectName with an identifier for your project. Then use
rvm gemset create projectName
Everytime you go into that directory, you'll be using that version of ruby with that particular gemset so you won't mix up versions or ruby or gems!