为什么 irb 插件没有加载到 Rails 控制台会话中?
我已经安装了很棒的打印和hirb irb 通过 rvm 插件到 Ruby 1.9.2。我可以从 irb 会话访问它。但是当我从 Rails 控制台尝试时,我收到错误,
ruby-1.9.2-p180 :001 > require "hirb"
LoadError: no such file to load -- hirb
这可能是什么原因?
I have installed both awsome print & hirb irb plugins to Ruby 1.9.2 through rvm. I can able to access it from irb session. But when i tried from rails console, i got the error
ruby-1.9.2-p180 :001 > require "hirb"
LoadError: no such file to load -- hirb
What could be the reason?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将
hirb
添加到Gemfile
。You have to add
hirb
toGemfile
.