Closed myronmarston closed 14 years ago
http://gist.github.com/283326 seems to fix it, but I don't know if it's a good way to do it. The core issue seems to be that native extensions are built without the environment being set up, so the installed dependencies can't be found.
I can't even get this working when I have ruby_core_source installed as a system gem.
I can't even get this working when I have ruby_core_source installed as a system gem.
This issue could be solved (for me, at least) by something along the lines of http://github.com/wycats/bundler/issues/107
I have no idea if this is still an issue. If you're still having this issue, you should file it on the carlhuda issue tracker.
Has this been resolved? I am getting this problem on Ubuntu 10.04 with Native install of ruby 1.9.2 rails 3.0.0, even as I have installed ruby_core_source.
extconf.rb:2:in require': no such file to load -- ruby_core_source (LoadError) from extconf.rb:2:in
My ruby and bundler versions:
I've got this simple Gemfile:
Here's what happens when I bundle:
The solution is to install ruby_core_source as a system gem:
This works OK, but it defeats the purpose of using bundler (i.e. being able to install all gems with
gem bundle
, without having to have any particular system gems installed).