在rubymine中运行annotate gem

时间:2013-01-17 01:55:05

标签: gem rubymine

铁杆新手 - 我错过了什么?通过Hartl的Rails教程,我们已经能够找到从RubyMine中运行所有以前的“bundle exec”命令的方法。但是现在我已经安装了annotate gem(第6章);本教程的说明是运行“bundle exec annotate”。是否有可以在Rails中运行的等价物?

(我已经发现如何从Rubymine中运行RSpec,git push等,但我找不到如何做到这一点。)

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:10)

(RubyMine 5.0)

  1. 运行>编辑配置......
  2. “添加新配置”(绿色'+'左上)> “宝石司令部”
  3. Name =“Annotate Gem”
  4. 配置标签> Gem name = annotate,Executable name = annotate
  5. Bundler选项卡> enable“在bundle(bundle exec)上下文中运行脚本”
  6. 确定按钮以保存配置
  7. 工具栏>配置选择器=“注释宝石”,单击“运行”按钮
  8. “运行”面板中显示的输出

答案 1 :(得分:0)

我在虚拟ubuntu盒子上远程运行它时遇到了问题,即发送的路径 来自Windows是这样的,它无法找到。

 \usr\local\bin\annotate

我刚刚在Ruby参数输入中添加了正确的路径:

 -e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) /usr/local/bin/annotate 

我刚开始使用rubymine,我怀疑这是正确的方法。