rspec 需要安装在基础应用程序中
我在构建宝石时遇到问题。当我运行 rake 时,它给出以下错误消息:
您需要在您的基础上安装 rspec 应用程序
我不完全确定我应该做什么来解决这个问题。我已经仔细检查过 rspec 实际上已安装。任何帮助将不胜感激。
I am having trouble building a gem. When I run rake it gives the the following error message:
You need to install rspec in your base
app
I'm not completely certain what I should be doing to fix this. I have double checked that rspec is, in fact installed. Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是关于设置 rSpec 的深入教程。即使您需要将 rSpec 安装到 gems 中,您也需要在实际的应用程序中进行设置。
http://www.pmamediagroup.com/2009 /04/tutorial-install-rspec-rails-factory-girl/
Here is a decent indepth tutorial on setting up rSpec. Even though you need to install rSpec into gems, you also need to set it up in the actual app.
http://www.pmamediagroup.com/2009/04/tutorial-install-rspec-rails-factory-girl/
您是否运行了以下命令
这将为 rspec 构建必要的基础设施
Have you run the following command
This will build the necessary infrastructure for rspec