我使用 RVM webrat 住在哪里?我怎样才能找到它?
如果我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在终端中输入
gem env
,查看GEM PATHS:
选项。这是使用 RVM 的 Ruby 版本存储 gem 的位置。转到那里,您应该能够找到 webrat 和您正在查找的文件。例如,在我的系统上,GEM PATH 是:
通向 webrat:
以及有问题的文件:
Type
gem env
into your terminal, look under theGEM 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:
Leading to webrat:
And the file in question:
gem content webrat
应该为您提供 webrat gem 的所有文件的路径。gem contents webrat
should give you the paths of all files of the webrat gem.