我使用 RVM webrat 住在哪里?我怎样才能找到它?

发布于 2024-10-23 19:05:28 字数 93 浏览 2 评论 0原文

如果我使用 RVM,如何找到 /lib/webrat/core/session.rb?

我不知道如何使用 OSX 上的终端进行搜索。

谢谢!

How can I find /lib/webrat/core/session.rb if I use RVM?

I have no idea how to search using terminal on my OSX.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我喜欢麦丽素 2024-10-30 19:05:29

在终端中输入gem env,查看GEM PATHS:选项。这是使用 RVM 的 Ruby 版本存储 gem 的位置。转到那里,您应该能够找到 webrat 和您正在查找的文件。

例如,在我的系统上,GEM PATH 是:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248

通向 webrat:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248/gems/webrat-0.7.3

以及有问题的文件:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248/gems/webrat-0.7.3/lib/webrat/core/session.rb

Type gem env into your terminal, look under the GEM PATHS: option. That is where your gems are stored for that version of Ruby with RVM. Go to there and you should be able to find webrat and the file you are looking for.

For example, on my system the GEM PATH is:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248

Leading to webrat:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248/gems/webrat-0.7.3

And the file in question:

/Users/ctcherry/Developer/.rvm/gems/ruby-1.8.7-p248/gems/webrat-0.7.3/lib/webrat/core/session.rb
蒲公英的约定 2024-10-30 19:05:29

gem content webrat 应该为您提供 webrat gem 的所有文件的路径。

gem contents webrat should give you the paths of all files of the webrat gem.

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