如何在同一台机器上使用多个版本的导轨

发布于 2024-12-01 13:50:41 字数 83 浏览 3 评论 0原文

我在我的机器上安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人九事 2024-12-08 13:50:41

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.

陌路黄昏 2024-12-08 13:50:41

一定要使用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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文