每次我在 Rails 3 中更改模型/控制器/帮助程序时,告诉 Autotest 运行吗?
我想告诉自动测试在每次更改 Rails 3 中的模型/控制器/帮助程序时运行。目前,它仅在我更改规范文件时运行。
这是我的环境:
- rails (3.0.3)
- rspec-rails (2.4.1)
- autotest (4.4.6)
- autotest-notification (2.3.1)
- Ubuntu 10.10
I would like to tell autotest to run every time I changed models/controllers/helpers in my rails 3. Currently, it runs only when I changed spec files.
Here is my environments:
- rails (3.0.3)
- rspec-rails (2.4.1)
- autotest (4.4.6)
- autotest-notification (2.3.1)
- Ubuntu 10.10
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将必须修改自动测试的一些设置。 rspec 存储库有一个关于与自动测试集成的很好的 wiki 页面。
https://github.com/dchelimsky/rspec/wiki/Autotest-Integration
You will have to modify some settings for autotest. The rspec repo has a good wiki page on integration with autotest.
https://github.com/dchelimsky/rspec/wiki/Autotest-Integration
我刚刚找到解决方案,我必须安装 autotest-rails-pure 并将 autotest 和 autotest-rails-pure 添加到 Gemfile 中。
I've just found solution, I have to install autotest-rails-pure and add both autotest and autotest-rails-pure into Gemfile.