You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When it tries to do stuff with that gemspec, Rubygems 1.3.7 just explodes. As a result, it is impossible to install 2.6.0.rc3 using that Rubygems version:
$ gem install rspec --pre
ERROR: While executing gem ... (NoMethodError)
undefined method `call' for nil:NilClass
It is also impossible to run bundle install against any Gemfile that requires any rspec prerelease version, because Bundler will evaluate the gemspec and call some Rubygems methods that result in an exception due to the invalid data.
Please fix the gemspec so that rspec will still work with Rubygems 1.3.7! Thanks.
The text was updated successfully, but these errors were encountered:
I just released 2.6.0.rc4, which fixes the gemspec problem if you specify 2.6.0.rc4 (and not just --pre). I need to leave 2.6.0.rc3 unyanked for at least enough time for @tenderlove to take a look at ruby/psych#13, so please bear with me and use the --pre for the moment, after which I'll yank 2.6.0.rc3. Leaving this open until that time.
Hello!
The gemspec for the 2.6.0.rc3 gem has invalid data in it. Specifically, the dependency lines that look like this:
When it tries to do stuff with that gemspec, Rubygems 1.3.7 just explodes. As a result, it is impossible to install 2.6.0.rc3 using that Rubygems version:
It is also impossible to run
bundle install
against any Gemfile that requires any rspec prerelease version, because Bundler will evaluate the gemspec and call some Rubygems methods that result in an exception due to the invalid data.Please fix the gemspec so that rspec will still work with Rubygems 1.3.7! Thanks.
The text was updated successfully, but these errors were encountered: