Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've previously added ZenTest to my gemfile to get autotest to run. On this occasion I get the following error four times over:

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"]

I've searched on this error and found a number of discussions in the github repo for ZenTest:

https://github.com/seattlerb/zentest/issues/29 https://github.com/seattlerb/zentest/issues/32 https://github.com/seattlerb/zentest/issues/33

I've followed some of the advice there, uninstalled and re-installing ZenTest, but no joy. I'm on ubuntu running ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux]

My entire app is available here:

https://github.com/tansaku/LocalSupport

so for example you can check out my GemFile:

https://github.com/tansaku/LocalSupport/blob/master/Gemfile

Any ideas?

Many thanks in advance

share|improve this question
I am seing the same thing. Did you report this? – maasha Feb 27 at 10:59
I saw it reported and closed within older issues as linked to above - wasn't sure how to report it effectively ... – Sam Joseph Feb 27 at 14:59
@maasha I notice there is an issue on github now: github.com/seattlerb/zentest/issues/40 – Sam Joseph May 14 at 16:10

1 Answer

up vote 4 down vote accepted

Just fixed this by editing

/usr/local/lib/ruby/gems/1.9.1/specifications/ZenTest-4.9.0.gemspec

so that the line specifying the rubygems version is now this:

 s.required_rubygems_version = Gem::Requirement.new("< 2.1") if s.respond_to? :required_rubygems_version=

now everything runs fine ...

share|improve this answer
This is a workaround, but it works for me, so I voted it up. – dcorking Mar 20 at 10:32
a more stable fix appears to be: "upgrade rubygems, uninstall zentest and reinstall zentest." seems to have worked for me on at least one system – Sam Joseph May 20 at 9:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.