Bug #5450
closedrake 0.9.2.2 does not exist in rubygems.org
Description
1.9.3 installs rake as a 'default gems' which version is 0.9.2.2, but the version does not exist in RubyGems's source repository.
I heard that it makes bundler confuse. For some environment (not 100%), bundler generates Gemfile.lock with 'rake 0.9.2.2' and it crashes because it's not in rubygems.org.
-
create the following 2-lines Gemfile
source :rubygems
gem "rake" -
bundle install
It creates '0.9.2.2' Gemfile.lock for some environment. (gem cache related? I'm not sure at present)
It might be just a bug of somewhere (ruby, rubygems, bundler, etc.), and should be fixed, but I think that this is an issue about "importing third party's gem as a standard library". It would be happened for json as well in the future.
I propose to remove 'rake' from 'default gems' for 1.9.3 GA (It just works as same as before like other standard libraries.) And the next version (1.9.4 or 2.0) should have a better way to integrate.
Thoughts?
Updated by nobu (Nobuyoshi Nakada) about 13 years ago
- Status changed from Open to Third Party's Issue
It just seems a bug of bundler or a mis-release of rake.
Why do we have to remove rake "gem"?
Updated by nahi (Hiroshi Nakamura) about 13 years ago
- Status changed from Third Party's Issue to Open
The problem I raised is an issue of "importing third party's gem as a standard library", not an issue of bundler. Sorry for let you confusing, Nobu.
The latest version of rake is 0.9.2 on RubyGems.org, but we're going to release modified version as 0.9.2.2. It's not what version control works. (FYI: development repo at github has v0.9.2.2 tag)
Of course, the right thing to do is pushing 0.9.2.2 gem on RubyGems.org but it's not our business. Just removing rake from 'default gem' looks to be a way to avoid blocking 1.9.3 release.
Anyone has a say? Is there any problem caused by removing it from 'default gem'? Eric, how do you think?
Updated by nahi (Hiroshi Nakamura) about 13 years ago
- Priority changed from 6 to Normal
- Target version changed from 1.9.3 to 2.0.0
0.9.2.2 is pushed to rubygems.org at 22 Oct. Now it's not a release blocker for 1.9.3 and I changed the priority to 'Normal'.
For 2.0.0, this issue should be solved at #5481. For 1.9.3-pX, we still need a care.
Updated by nahi (Hiroshi Nakamura) about 13 years ago
I forgot to mention. I heard that drbrain helped to push the version. Thank you, Eric.
Updated by nobu (Nobuyoshi Nakada) about 13 years ago
- Status changed from Open to Third Party's Issue
This particular case seems solved.
Updated by nahi (Hiroshi Nakamura) about 13 years ago
- Status changed from Third Party's Issue to Closed
Sure, it exactly is our issue as I explained, but the problem I stated in the subject is fixed. It must be closed now. Thanks!