如何使用Rails.vim和spork?
如果我在一个rails项目中,使用rails.vim进行编辑,我怎样才能让:Rake通过Spork运行规范?
这很大程度上只是让 :Rake 通过“-o”标志了解项目的 specs/spec.opts 文件的问题?
If I'm in a rails project, editing with rails.vim, how can I get :Rake to run the specs through Spork?
Its largely just a matter of making :Rake aware of the project's specs/spec.opts file via the "-o" flag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果是,如果您自动将
--drb
选项添加到您的 spec.opts 文件中,Rails.vim 将使用 Spork。Turns out that Rails.vim will use Spork if you add the
--drb
option to your spec.opts file automatically.