- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我之前已将 ZenTest 添加到我的 gemfile 以运行自动测试。在这种情况下,我四次收到以下错误:
saasbook@saasbook:~/Documents/github/LocalSupport$ bundle exec autotest
Invalid gemspec in [/usr/local/lib/ruby/gems/1.9.1/specifications/ZenTest-4.9.0.gemspec]: Illformed requirement ["< 2.1, >= 1.8"]
我搜索了这个错误,并在 ZenTest 的 github repo 中找到了一些讨论:
https://github.com/seattlerb/zentest/issues/29 https://github.com/seattlerb/zentest/issues/32 https://github.com/seattlerb/zentest/issues/33
我已经听从了那里的一些建议,卸载并重新安装了 ZenTest,但没有任何乐趣。我在 ubuntu 上运行 ruby 1.9.2p290(2011-07-09 修订版 32553)[i686-linux]
我的整个应用程序都在这里可用:
https://github.com/tansaku/LocalSupport
例如,您可以查看我的 GemFile:
https://github.com/tansaku/LocalSupport/blob/master/Gemfile
有什么想法吗?
在此先感谢
最佳答案
刚刚通过编辑修复了这个问题
/usr/local/lib/ruby/gems/1.9.1/specifications/ZenTest-4.9.0.gemspec
所以指定 rubygems 版本的行现在是这样的:
s.required_rubygems_version = Gem::Requirement.new("< 2.1") if s.respond_to? :required_rubygems_version=
现在一切正常...
关于ruby-on-rails - ZenTest 错误阻止自动测试运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15006181/
我遇到了与发布的问题完全相同的问题:ZenTest autotest not running tests 。但是,该文章中没有任何内容可以帮助我解决问题。我已经安装了 ZenTest 和 autote
我正在尝试配置自动测试,以便当我运行测试套件并且测试失败时,自动测试会停止测试并等待我在再次测试之前进行更改。使用我当前的配置,自动测试在遇到失败的测试时会无限地进行测试,这使得处理起来有点麻烦(每次
我之前已将 ZenTest 添加到我的 gemfile 以运行自动测试。在这种情况下,我四次收到以下错误: saasbook@saasbook:~/Documents/github/LocalSupp
我有 problems with autotest before我通过从 ZenTest 4.1.4 降级到 4.1.3 解决了这个问题。 $ ruby -v ruby 1.8.7 (2008-08-
这个问题有点像this one但它的解决方案对我不起作用。使用RVM,刚刚升级到Rails 3.1 rc6。所有工作都出奇地顺利,除了当我尝试部署到新的 Heroku Cedar 临时堆栈时出现错误:
narendra@narendra-laptop:~/rails_project/sample_app$ sudo gem install ZenTest [sudo] password for na
我正在尝试通过git push heroku master推送至heroku。 我有这个错误。 Fetching source index for http://rubygems.org/
我遇到了一个关于 slow rspec tests 的话题这让我想知道哪种 Rails 测试运行器配置会导致运行速度最快的重复测试? 我知道 ZenTest/autotest-rails可与 spor
安装一些测试工具后,我不断收到 Invalid gemspec error每当我输入命令时。出现以下错误: Invalid gemspec in [/var/lib/gems/1.9.1/specif
我正在尝试在某些 Ubuntu 服务器上安装 RubyInline: sudo gem1.9.1 install RubyInline ERROR: Error installing RubyInl
我在尝试运行 ZenTest 时不断收到此错误 Invalid gemspec in [/usr/local/rvm/gems/ruby-1.9.3-p194/specifications/ZenTe
我以前使用过 ZenTest 和自动测试来处理 Ruby 项目,并且我曾经使用它们进行测试驱动开发,如 this configuration .我有一个目前正在使用 Java 进行的项目,我想知道 J
我在带有 Rails 通知的自动测试中挖掘谷歌,发现这条指令很有用( http://jetpackweb.com/blog/2009/09/01/autotest-notifications-on-u
ZenTest 和 Autotest 已于 12 月 1 日更新。升级到最新版本 (Autotest-4.4.6/ZenTest-4.4.1) 后,自动测试不会发现我的规范并尝试运行标准单元测试。自动
我是一名优秀的程序员,十分优秀!